Skip to content

Commit

Permalink
[MIPS] Pass NULL not 0 for pointer value.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 11, 2006
1 parent c11b3c1 commit 9a244b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9a244b9

Please sign in to comment.