diff options
author | Thiemo Seufer <ths@networkno.de> | 2008-05-06 06:21:22 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-05-12 11:46:56 -0400 |
commit | 83738e307365aa2de4a1be65ed574aaebce52ea0 (patch) | |
tree | d7c2a36b60fe78b23aeecbd6584d716a115aa0ba /arch/mips | |
parent | b01273f120a390363ceb27bd0ccc60ddf1fb936d (diff) |
[MIPS] fix warning message on SMP kernels
This patch fixes a (harmless) warning message.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 33780cc61ce9..63370cdd3c90 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -87,8 +87,8 @@ struct plat_smp_ops *mp_ops; | |||
87 | 87 | ||
88 | __cpuinit void register_smp_ops(struct plat_smp_ops *ops) | 88 | __cpuinit void register_smp_ops(struct plat_smp_ops *ops) |
89 | { | 89 | { |
90 | if (ops) | 90 | if (mp_ops) |
91 | printk(KERN_WARNING "Overriding previous set SMP ops\n"); | 91 | printk(KERN_WARNING "Overriding previously set SMP ops\n"); |
92 | 92 | ||
93 | mp_ops = ops; | 93 | mp_ops = ops; |
94 | } | 94 | } |