diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-11 19:30:03 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-11 19:31:00 +0100 |
commit | 9a244b95ddb62a17b62f4b061b6e13ca4d177942 (patch) | |
tree | 84cad1da5dda2923836c1f99da85b03a72e1ad62 /arch/mips | |
parent | c11b3c1bc0250027ff05665898f8d8eec40b7e49 (diff) |
[MIPS] Pass NULL not 0 for pointer value.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 1af3612a1ce..db80957ada8 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c @@ -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) |