Skip to content

Commit

Permalink
[IA64] printk needs KERN_INFO arch/ia64/kernel/smp.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Christophe Lucas authored and Tony Luck committed Jun 21, 2005
1 parent a35f1e0 commit 52a0de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/ia64/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 52a0de2

Please sign in to comment.