Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9391d6... Commit: 9391d6bbedfd28c20531be75a3929c62bb43676e Parent: e522b7ccd26a9774cac9379476ae3c6e005c88be Author: Ralf Baechle <ralf@linux-mips.org> AuthorDate: Tue Aug 5 23:43:35 2008 +0100 Committer: Ralf Baechle <ralf@linux-mips.org> CommitDate: Tue Aug 26 09:10:24 2008 +0100 [MIPS] kgdb: s/(void *)0)/NULL/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org> --- arch/mips/kernel/kgdb.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/mips/kernel/kgdb.c b/arch/mips/kernel/kgdb.c index 15dbfd9..6608945 100644 --- a/arch/mips/kernel/kgdb.c +++ b/arch/mips/kernel/kgdb.c @@ -62,7 +62,7 @@ void arch_kgdb_breakpoint(void) static void kgdb_call_nmi_hook(void *ignored) { - kgdb_nmicallback(raw_smp_processor_id(), (void *)0); + kgdb_nmicallback(raw_smp_processor_id(), NULL); } void kgdb_roundup_cpus(unsigned long flags) -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
