Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55c395b4 authored by Michael Tokarev's avatar Michael Tokarev Committed by Ingo Molnar
Browse files

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: default avatarMichael Tokarev <mjt@tls.msk.ru>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent affa219b
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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);
	}