diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-11 18:30:03 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-11 18:31:00 (GMT) |
commit | 9a244b95ddb62a17b62f4b061b6e13ca4d177942 (patch) | |
tree | 84cad1da5dda2923836c1f99da85b03a72e1ad62 /arch/mips/kernel | |
parent | c11b3c1bc0250027ff05665898f8d8eec40b7e49 (diff) | |
download | linux-9a244b95ddb62a17b62f4b061b6e13ca4d177942.tar.xz |
[MIPS] Pass NULL not 0 for pointer value.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-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 1af3612..db80957 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) |