Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52a0de2c authored by Christophe Lucas's avatar Christophe Lucas Committed by Tony Luck
Browse files

[IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c



printk() calls should include appropriate KERN_* constant.

Signed-off-by: default avatarChristophe Lucas <clucas@rotomalug.org>
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent a35f1e03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}