projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b01273f
)
[MIPS] fix warning message on SMP kernels
author
Thiemo Seufer
<ths@networkno.de>
Tue, 6 May 2008 10:21:22 +0000
(11:21 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Mon, 12 May 2008 15:46:56 +0000
(16:46 +0100)
This patch fixes a (harmless) warning message.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/smp.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/smp.c
b/arch/mips/kernel/smp.c
index
33780cc
..
63370cd
100644
(file)
--- a/
arch/mips/kernel/smp.c
+++ b/
arch/mips/kernel/smp.c
@@
-87,8
+87,8
@@
struct plat_smp_ops *mp_ops;
__cpuinit void register_smp_ops(struct plat_smp_ops *ops)
{
- if (ops)
- printk(KERN_WARNING "Overriding previous set SMP ops\n");
+ if (
mp_
ops)
+ printk(KERN_WARNING "Overriding previous
ly
set SMP ops\n");
mp_ops = ops;
}