Commit e522b7cc authored by Ralf Baechle's avatar Ralf Baechle

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

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 1374d084
......@@ -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();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment