Skip to content

Commit

Permalink
[PATCH] Remove KERN_INFO from middle of printk line
Browse files Browse the repository at this point in the history
Don't print KERN_INFO in the middle of a printk line.
	printk(KERN_INFO "OEM ID: %s ",str);
is just above this. This is already fixed up in i386 copy.

Signed-off-by: Martin J. Bligh <mbligh@google.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Tim Hockin authored and Linus Torvalds committed Feb 17, 2006
1 parent 9127dd1 commit 9ff4ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86_64/kernel/mpparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)

memcpy(str,mpc->mpc_productid,12);
str[12]=0;
printk(KERN_INFO "Product ID: %s ",str);
printk("Product ID: %s ",str);

printk(KERN_INFO "APIC at: 0x%X\n",mpc->mpc_lapic);
printk("APIC at: 0x%X\n",mpc->mpc_lapic);

/* save the local APIC address, it might be non-default */
if (!acpi_lapic)
Expand Down

0 comments on commit 9ff4ced

Please sign in to comment.