diff options
| author | Ovidiu Panait <[email protected]> | 2022-01-01 19:13:26 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-01-18 08:31:02 -0500 |
| commit | 485c90c06bbb01f9ae3e5746836152ce5ea36c0f (patch) | |
| tree | ed3838af060e67dbcffd06df07f0938aed21b5e6 /include/bedbug/type.h | |
| parent | 027b0e9c165d33da1bd7458363a3d57fdadee662 (diff) | |
common: remove bedbug debugger support
Commit 98f705c9cefd ("powerpc: remove 4xx support") removed (in 2017) the
last code that made use of bedbug debugger support. Since there aren't
any boards left that define either CONFIG_CMD_BEDBUG or a real
bedbug_init(), drop this feature from u-boot.
Signed-off-by: Ovidiu Panait <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/bedbug/type.h')
| -rw-r--r-- | include/bedbug/type.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/include/bedbug/type.h b/include/bedbug/type.h deleted file mode 100644 index f7a719caf0a..00000000000 --- a/include/bedbug/type.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _TYPE_BEDBUG_H -#define _TYPE_BEDBUG_H - -struct cmd_tbl; - -/* Supporting routines */ -int bedbug_puts (const char *); -int bedbug_init(void); -void bedbug860_init (void); -void do_bedbug_breakpoint (struct pt_regs *); -void bedbug_main_loop (unsigned long, struct pt_regs *); - - -typedef struct { - int hw_debug_enabled; - int stopped; - int current_bp; - struct pt_regs *regs; - - void (*do_break)(struct cmd_tbl *cmd, int flags, int argc, - char *const argv[]); - void (*break_isr) (struct pt_regs *); - int (*find_empty) (void); - int (*set) (int, unsigned long); - int (*clear) (int); -} CPU_DEBUG_CTX; - - -#endif /* _TYPE_BEDBUG_H */ |
