kdb,kgdb: fix sparse fixups
authorJason Wessel <jason.wessel@windriver.com>
Mon, 23 Aug 2010 14:20:14 +0000 (09:20 -0500)
committerJason Wessel <jason.wessel@windriver.com>
Fri, 22 Oct 2010 20:34:12 +0000 (15:34 -0500)
commit91b152aa85bbcf076e269565394c31964f940371
tree32b2a8684877a15b050ef21c8ddcd583b695538d
parent75d14edee5689716b55afe467acfc13206a31f95
kdb,kgdb: fix sparse fixups

Fix the following sparse warnings:

kdb_main.c:328:5: warning: symbol 'kdbgetu64arg' was not declared. Should it be static?
kgdboc.c:246:12: warning: symbol 'kgdboc_early_init' was not declared. Should it be static?
kgdb.c:652:26: warning: incorrect type in argument 1 (different address spaces)
kgdb.c:652:26:    expected void const *ptr
kgdb.c:652:26:    got struct perf_event *[noderef] <asn:3>*pev

The one in kgdb.c required the (void * __force) because of the return
code from register_wide_hw_breakpoint looking like:

        return (void __percpu __force *)ERR_PTR(err);

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
arch/x86/kernel/kgdb.c
drivers/serial/kgdboc.c
include/linux/kdb.h
kernel/debug/kdb/kdb_private.h