The patch "kgdb: core changes to support kdb" in -next makes the inclusion of asm/kgdb.h depend on the selection of KGDB in Kconfig, breaking the build on ARM when this is not selected since it protypes a function kgdb_die_hook() there. Since this seems like a reasonable thing for an architecture to want to do fix this by moving the inclusion outside the ifdef check.
Signed-off-by: Mark Brown <[email protected]> --- include/linux/kgdb.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h index bd84f73..ada1f26 100644 --- a/include/linux/kgdb.h +++ b/include/linux/kgdb.h @@ -16,9 +16,11 @@ #include <linux/serial_8250.h> #include <linux/linkage.h> #include <linux/init.h> + +#include <asm/kgdb.h> + #ifdef CONFIG_KGDB #include <asm/atomic.h> -#include <asm/kgdb.h> struct pt_regs; -- 1.6.5.7 ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Kgdb-bugreport mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/kgdb-bugreport
