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>
This commit is contained in:
Mike Rapoport 2020-10-05 19:12:37 +03:00 committed by Vineet Gupta
parent 05b1be68c4
commit 937cf85f1d

View 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;
}