Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] Remove KERN_INFO from middle of printk line

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>

authored by

Tim Hockin and committed by
Linus Torvalds
9ff4ced4 9127dd1a

+2 -2
+2 -2
arch/x86_64/kernel/mpparse.c
··· 288 288 289 289 memcpy(str,mpc->mpc_productid,12); 290 290 str[12]=0; 291 - printk(KERN_INFO "Product ID: %s ",str); 291 + printk("Product ID: %s ",str); 292 292 293 - printk(KERN_INFO "APIC at: 0x%X\n",mpc->mpc_lapic); 293 + printk("APIC at: 0x%X\n",mpc->mpc_lapic); 294 294 295 295 /* save the local APIC address, it might be non-default */ 296 296 if (!acpi_lapic)