projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05b1be6
)
ARC: SMP: fix typo and use "come up" instead of "comeup"
author
Mike Rapoport
<rppt@linux.ibm.com>
Mon, 5 Oct 2020 16:12:37 +0000
(19:12 +0300)
committer
Vineet 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
patch
|
blob
|
history
diff --git
a/arch/arc/kernel/smp.c
b/arch/arc/kernel/smp.c
index
eca35e0
..
52906d3
100644
(file)
--- 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;
}