From: Ralf Baechle Date: Wed, 11 Oct 2006 18:30:03 +0000 (+0100) Subject: [MIPS] Pass NULL not 0 for pointer value. X-Git-Tag: v2.6.19-rc2~20^2 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=9a244b95ddb62a17b62f4b061b6e13ca4d177942;p=linux-2.6-omap-h63xx.git [MIPS] Pass NULL not 0 for pointer value. Signed-off-by: Ralf Baechle --- 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)