Explorar o código

[MIPS] kgdb: smp_call_function's 3rd argument is a pointer.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle %!s(int64=17) %!d(string=hai) anos
pai
achega
e522b7ccd2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      arch/mips/kernel/kgdb.c

+ 1 - 1
arch/mips/kernel/kgdb.c

@@ -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();
 }