diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 04:28:41 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:04 -0800 |
commit | 5874d5f2ea2ef9bd7d759d47ed868269ba99ab65 (patch) | |
tree | c75cc4fce955695a0634052d0ba1715723bc4930 /src | |
parent | 363d72a48457e03d2ffdbf9154b8ba3fdb9197d0 (diff) | |
download | openocd_libswd-5874d5f2ea2ef9bd7d759d47ed868269ba99ab65.tar.gz openocd_libswd-5874d5f2ea2ef9bd7d759d47ed868269ba99ab65.tar.bz2 openocd_libswd-5874d5f2ea2ef9bd7d759d47ed868269ba99ab65.tar.xz openocd_libswd-5874d5f2ea2ef9bd7d759d47ed868269ba99ab65.zip |
use struct jtag_tap_event_action
Remove useless typedef and redundant suffix from jtag_tap_event_action.
Diffstat (limited to 'src')
-rw-r--r-- | src/jtag/jtag.h | 8 | ||||
-rw-r--r-- | src/jtag/tcl.c | 4 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h index 713823a2..e3f81489 100644 --- a/src/jtag/jtag.h +++ b/src/jtag/jtag.h @@ -143,8 +143,6 @@ struct scan_field { uint8_t intmp[4]; }; -typedef struct jtag_tap_event_action_s jtag_tap_event_action_t; - struct jtag_tap { const char* chip; const char* tapname; @@ -174,7 +172,7 @@ struct jtag_tap { /// Bypass register selected int bypass; - jtag_tap_event_action_t *event_action; + struct jtag_tap_event_action *event_action; struct jtag_tap* next_tap; }; @@ -220,11 +218,11 @@ enum jtag_event { JTAG_TAP_EVENT_DISABLE, }; -struct jtag_tap_event_action_s +struct jtag_tap_event_action { enum jtag_event event; Jim_Obj* body; - jtag_tap_event_action_t* next; + struct jtag_tap_event_action* next; }; /** diff --git a/src/jtag/tcl.c b/src/jtag/tcl.c index 3c9ef0e2..9d6169cc 100644 --- a/src/jtag/tcl.c +++ b/src/jtag/tcl.c @@ -103,7 +103,7 @@ static int jtag_tap_configure_cmd(Jim_GetOptInfo *goi, struct jtag_tap * tap) } { - jtag_tap_event_action_t *jteap; + struct jtag_tap_event_action *jteap; jteap = tap->event_action; /* replace existing? */ @@ -337,7 +337,7 @@ static int jim_newtap_cmd(Jim_GetOptInfo *goi) static void jtag_tap_handle_event(struct jtag_tap *tap, enum jtag_event e) { - jtag_tap_event_action_t * jteap; + struct jtag_tap_event_action * jteap; for (jteap = tap->event_action; jteap != NULL; jteap = jteap->next) { if (jteap->event == e) { |