[MIPS] kgdb: smp_call_function's 3rd argument is a pointer.
authorRalf Baechle <ralf@linux-mips.org>
Tue, 5 Aug 2008 22:42:16 +0000 (23:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 26 Aug 2008 08:10:23 +0000 (09:10 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/kgdb.c

index c5a8b2d..15dbfd9 100644 (file)
@@ -68,7 +68,7 @@ static void kgdb_call_nmi_hook(void *ignored)
 void kgdb_roundup_cpus(unsigned long flags)
 {
        local_irq_enable();
-       smp_call_function(kgdb_call_nmi_hook, NULL, NULL);
+       smp_call_function(kgdb_call_nmi_hook, NULL, 0);
        local_irq_disable();
 }