diff options
author | Christophe Lucas <clucas@rotomalug.org> | 2005-06-20 14:50:00 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-06-21 14:21:17 -0700 |
commit | 52a0de2cd2d3da8f90d88e2eccb63d0cadd6ae26 (patch) | |
tree | 24d764db02eaff2882434987525d4c3ce1665e35 /arch/ia64/kernel | |
parent | a35f1e03b868a3179fa12344ec0d46a44fbf7574 (diff) |
[IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c
printk() calls should include appropriate KERN_* constant.
Signed-off-by: Christophe Lucas <clucas@rotomalug.org>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index 953095e2ce1..b49d4ddaab9 100644 --- a/arch/ia64/kernel/smp.c +++ b/arch/ia64/kernel/smp.c @@ -269,7 +269,7 @@ smp_call_function_single (int cpuid, void (*func) (void *info), void *info, int int me = get_cpu(); /* prevent preemption and reschedule on another processor */ if (cpuid == me) { - printk("%s: trying to call self\n", __FUNCTION__); + printk(KERN_INFO "%s: trying to call self\n", __FUNCTION__); put_cpu(); return -EBUSY; } |