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

ARC: SMP: fix typo and use "come up" instead of "comeup"

When a secondary CPU fails to come up, there is a missing space in the
log:

Timeout: CPU1 FAILED to comeup !!!

Fix it.

Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>

authored by

Mike Rapoport and committed by
Vineet Gupta
937cf85f 05b1be68

+1 -1
+1 -1
arch/arc/kernel/smp.c
··· 226 226 } 227 227 228 228 if (!cpu_online(cpu)) { 229 - pr_info("Timeout: CPU%u FAILED to comeup !!!\n", cpu); 229 + pr_info("Timeout: CPU%u FAILED to come up !!!\n", cpu); 230 230 return -1; 231 231 } 232 232