ARC: SMP: fix typo and use "come up" instead of "comeup"
authorMike Rapoport <rppt@linux.ibm.com>
Mon, 5 Oct 2020 16:12:37 +0000 (19:12 +0300)
committerVineet Gupta <vgupta@synopsys.com>
Tue, 6 Oct 2020 04:02:29 +0000 (21:02 -0700)
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>
arch/arc/kernel/smp.c

index eca35e0..52906d3 100644 (file)
@@ -226,7 +226,7 @@ int __cpu_up(unsigned int cpu, struct task_struct *idle)
        }
 
        if (!cpu_online(cpu)) {
-               pr_info("Timeout: CPU%u FAILED to comeup !!!\n", cpu);
+               pr_info("Timeout: CPU%u FAILED to come up !!!\n", cpu);
                return -1;
        }