X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Ftarget%2Favrt.h;h=145f836f1a79496e1ba4d03cbf15895cc1a39bb6;hb=e232dea176cc8c831e77a10903120ff057337f6c;hp=e840aaf96c24cc92d3094ebcccfbea15fb430d49;hpb=b2a13907a86eb23b96452c27729d16f658cbad53;p=openocd diff --git a/src/target/avrt.h b/src/target/avrt.h index e840aaf9..145f836f 100644 --- a/src/target/avrt.h +++ b/src/target/avrt.h @@ -20,14 +20,16 @@ #ifndef AVRT_H #define AVRT_H -typedef struct mcu_jtag_s +#include "jtag.h" + +struct mcu_jtag { - jtag_tap_t *tap; -} mcu_jtag_t; + struct jtag_tap *tap; +}; -typedef struct avr_common_s +struct avr_common { - mcu_jtag_t jtag_info; -} avr_common_t; + struct mcu_jtag jtag_info; +}; #endif /* AVRT_H */