Skip to content

Commit

Permalink
x86: fix missing space in printk
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michael Tokarev authored and Ingo Molnar committed Dec 5, 2008
1 parent affa219 commit 55c395b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arch/x86/kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1086,8 +1086,10 @@ static int __init smp_sanity_check(unsigned max_cpus)
#endif

if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
printk(KERN_WARNING "weird, boot CPU (#%d) not listed"
"by the BIOS.\n", hard_smp_processor_id());
printk(KERN_WARNING
"weird, boot CPU (#%d) not listed by the BIOS.\n",
hard_smp_processor_id());

physid_set(hard_smp_processor_id(), phys_cpu_present_map);
}

Expand Down

0 comments on commit 55c395b

Please sign in to comment.