[IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c
authorChristophe Lucas <clucas@rotomalug.org>
Mon, 20 Jun 2005 21:50:00 +0000 (14:50 -0700)
committerTony Luck <tony.luck@intel.com>
Tue, 21 Jun 2005 21:21:17 +0000 (14:21 -0700)
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>
arch/ia64/kernel/smp.c

index 953095e2ce157d93c4e9666678b4009ccf171b9c..b49d4ddaab93a45f71f559631e2fed66a98c70f6 100644 (file)
@@ -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;
        }