diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-12-21 18:40:43 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-01-18 00:23:33 +0100 |
commit | cbb0cab1d929839d1cf170b54b1fef05896433ea (patch) | |
tree | a31cafe64d6aff6b24959a31a5358b454d8a346c /cpu | |
parent | 0c909551f88c0d92a919ff70127df7b33cdd473d (diff) |
kgdb: drop duplicate debugger_exception_handler
The debugger_exception_handler definition is the same for everyone, so use
the common one now.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/74xx_7xx/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc5xx/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc5xxx/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc8220/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc8260/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc85xx/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc86xx/traps.c | 4 | ||||
-rw-r--r-- | cpu/mpc8xx/traps.c | 4 | ||||
-rw-r--r-- | cpu/ppc4xx/traps.c | 4 |
9 files changed, 0 insertions, 36 deletions
diff --git a/cpu/74xx_7xx/traps.c b/cpu/74xx_7xx/traps.c index b0662276969..24e28e212a4 100644 --- a/cpu/74xx_7xx/traps.c +++ b/cpu/74xx_7xx/traps.c @@ -40,10 +40,6 @@ DECLARE_GLOBAL_DATA_PTR; #endif -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); diff --git a/cpu/mpc5xx/traps.c b/cpu/mpc5xx/traps.c index 78c820ae7e3..cc8e0913528 100644 --- a/cpu/mpc5xx/traps.c +++ b/cpu/mpc5xx/traps.c @@ -36,10 +36,6 @@ #include <command.h> #include <asm/processor.h> -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - #if defined(CONFIG_CMD_BEDBUG) extern void do_bedbug_breakpoint(struct pt_regs *); #endif diff --git a/cpu/mpc5xxx/traps.c b/cpu/mpc5xxx/traps.c index daa1ec6b589..2a0915351e7 100644 --- a/cpu/mpc5xxx/traps.c +++ b/cpu/mpc5xxx/traps.c @@ -37,10 +37,6 @@ #include <command.h> #include <asm/processor.h> -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); diff --git a/cpu/mpc8220/traps.c b/cpu/mpc8220/traps.c index 89cca1d2237..f98d40f0087 100644 --- a/cpu/mpc8220/traps.c +++ b/cpu/mpc8220/traps.c @@ -37,10 +37,6 @@ #include <command.h> #include <asm/processor.h> -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler) (struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table (unsigned long); diff --git a/cpu/mpc8260/traps.c b/cpu/mpc8260/traps.c index 6624544eac0..f9f4dea9392 100644 --- a/cpu/mpc8260/traps.c +++ b/cpu/mpc8260/traps.c @@ -37,10 +37,6 @@ #include <asm/processor.h> #include <asm/m8260_pci.h> -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); diff --git a/cpu/mpc85xx/traps.c b/cpu/mpc85xx/traps.c index 9d16b9b55e7..241ebd5657c 100644 --- a/cpu/mpc85xx/traps.c +++ b/cpu/mpc85xx/traps.c @@ -42,10 +42,6 @@ DECLARE_GLOBAL_DATA_PTR; -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); diff --git a/cpu/mpc86xx/traps.c b/cpu/mpc86xx/traps.c index 13f386ddc84..ad005c3afe6 100644 --- a/cpu/mpc86xx/traps.c +++ b/cpu/mpc86xx/traps.c @@ -36,10 +36,6 @@ DECLARE_GLOBAL_DATA_PTR; -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); diff --git a/cpu/mpc8xx/traps.c b/cpu/mpc8xx/traps.c index e1ec88961ab..f357c8d6bfb 100644 --- a/cpu/mpc8xx/traps.c +++ b/cpu/mpc8xx/traps.c @@ -36,10 +36,6 @@ #include <command.h> #include <asm/processor.h> -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - #if defined(CONFIG_CMD_BEDBUG) extern void do_bedbug_breakpoint(struct pt_regs *); #endif diff --git a/cpu/ppc4xx/traps.c b/cpu/ppc4xx/traps.c index 55154b6f011..cb35faf0814 100644 --- a/cpu/ppc4xx/traps.c +++ b/cpu/ppc4xx/traps.c @@ -38,10 +38,6 @@ DECLARE_GLOBAL_DATA_PTR; -#if defined(CONFIG_CMD_KGDB) -int (*debugger_exception_handler)(struct pt_regs *) = 0; -#endif - /* Returns 0 if exception not found and fixup otherwise. */ extern unsigned long search_exception_table(unsigned long); |