diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2008-12-05 06:42:20 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-05 07:09:00 -0500 |
commit | 55c395b47042e12d5c25aa07f271f56ffe44f793 (patch) | |
tree | d9658554f3ec629947ce0e5543a7f1b03b42a214 /arch/x86/kernel/smpboot.c | |
parent | affa219b60a11b3295637a97f5b1b8ef231490fc (diff) |
x86: fix missing space in printk
Just come across this when booting on an old hw..
Looks somewhat ugly, that single missing space ;)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 7b1093397319..1a3c3253f0ed 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -1086,8 +1086,10 @@ static int __init smp_sanity_check(unsigned max_cpus) | |||
1086 | #endif | 1086 | #endif |
1087 | 1087 | ||
1088 | if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) { | 1088 | if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) { |
1089 | printk(KERN_WARNING "weird, boot CPU (#%d) not listed" | 1089 | printk(KERN_WARNING |
1090 | "by the BIOS.\n", hard_smp_processor_id()); | 1090 | "weird, boot CPU (#%d) not listed by the BIOS.\n", |
1091 | hard_smp_processor_id()); | ||
1092 | |||
1091 | physid_set(hard_smp_processor_id(), phys_cpu_present_map); | 1093 | physid_set(hard_smp_processor_id(), phys_cpu_present_map); |
1092 | } | 1094 | } |
1093 | 1095 | ||