use struct jtag_tap_event_action
authorZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 12:28:41 +0000 (04:28 -0800)
committerZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 19:58:04 +0000 (11:58 -0800)
Remove useless typedef and redundant suffix from jtag_tap_event_action.

src/jtag/jtag.h
src/jtag/tcl.c

index 713823a21bbee766610e252244a32dbb0868edad..e3f81489682ec7de27639f1444732d2a4531b036 100644 (file)
@@ -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;
 };
 
 /**
index 3c9ef0e2727b89b5003ab21530c2071ee190907e..9d6169ccfe7c0e8fb9bd042adacd88e7bf99088b 100644 (file)
@@ -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) {