Patch from "Vitezslav Samel" Obvious fix of printk level (wrong since 2.5.62). arch/i386/kernel/mpparse.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/mpparse.c~mpparse-typo-fix arch/i386/kernel/mpparse.c --- 25/arch/i386/kernel/mpparse.c~mpparse-typo-fix Wed Feb 26 14:23:13 2003 +++ 25-akpm/arch/i386/kernel/mpparse.c Wed Feb 26 14:23:13 2003 @@ -631,7 +631,7 @@ void __init get_smp_config (void) else if (acpi_lapic) printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n"); - printk("KERN_INFO Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification); + printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification); if (mpf->mpf_feature2 & (1<<7)) { printk(KERN_INFO " IMCR and PIC compatibility mode.\n"); pic_mode = 1; _