commit | 9a244b95ddb62a17b62f4b061b6e13ca4d177942 | [log] [tgz] |
---|---|---|
author | Ralf Baechle <ralf@linux-mips.org> | Wed Oct 11 19:30:03 2006 +0100 |
committer | Ralf Baechle <ralf@linux-mips.org> | Wed Oct 11 19:31:00 2006 +0100 |
tree | 84cad1da5dda2923836c1f99da85b03a72e1ad62 | |
parent | c11b3c1bc0250027ff05665898f8d8eec40b7e49 [diff] [blame] |
[MIPS] Pass NULL not 0 for pointer value. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 1af3612..db80957 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c
@@ -310,7 +310,7 @@ 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)