Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e522b7cc authored by Ralf Baechle's avatar Ralf Baechle
Browse files

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

parent 1374d084
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
}