From: Christophe Lucas Date: Mon, 20 Jun 2005 21:50:00 +0000 (-0700) Subject: [IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=52a0de2cd2d3da8f90d88e2eccb63d0cadd6ae26;p=linux-beck.git [IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c printk() calls should include appropriate KERN_* constant. Signed-off-by: Christophe Lucas Signed-off-by: Domen Puncer Signed-off-by: Tony Luck --- diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index 953095e2ce15..b49d4ddaab93 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; }