[MIPS] Pass NULL not 0 for pointer value.
authorRalf Baechle <ralf@linux-mips.org>
Wed, 11 Oct 2006 18:30:03 +0000 (19:30 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 11 Oct 2006 18:31:00 +0000 (19:31 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/smp.c

index 1af3612a1ce862f0b43e777935d59d9a6990c1af..db80957ada8957631070f40bb10f847cd01eb26e 100644 (file)
@@ -310,7 +310,7 @@ static void flush_tlb_all_ipi(void *info)
 
 void flush_tlb_all(void)
 {
-       on_each_cpu(flush_tlb_all_ipi, 0, 1, 1);
+       on_each_cpu(flush_tlb_all_ipi, NULL, 1, 1);
 }
 
 static void flush_tlb_mm_ipi(void *mm)