diff options
author | Mike Rapoport <rppt@linux.ibm.com> | 2020-10-05 19:12:37 +0300 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2020-10-05 21:02:29 -0700 |
commit | 937cf85f1df8f8e287dac6b876ea55ef9f08071e (patch) | |
tree | 04ae133aff1a5b0b68859000309ba9892894ab8d /arch/arc/kernel/smp.c | |
parent | 05b1be68c4d6d76970025e6139bfd735c2256ee5 (diff) | |
download | linux-937cf85f1df8f8e287dac6b876ea55ef9f08071e.tar.bz2 |
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>
Diffstat (limited to 'arch/arc/kernel/smp.c')
-rw-r--r-- | arch/arc/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c index eca35e02ce06..52906d314537 100644 --- a/arch/arc/kernel/smp.c +++ b/arch/arc/kernel/smp.c @@ -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; } |