Ver código fonte

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

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 16 anos atrás
pai
commit
e522b7ccd2
1 arquivos alterados com 1 adições e 1 exclusões
  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)
 void kgdb_roundup_cpus(unsigned long flags)
 {
 {
 	local_irq_enable();
 	local_irq_enable();
-	smp_call_function(kgdb_call_nmi_hook, NULL, NULL);
+	smp_call_function(kgdb_call_nmi_hook, NULL, 0);
 	local_irq_disable();
 	local_irq_disable();
 }
 }