X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Favrt.h;h=145f836f1a79496e1ba4d03cbf15895cc1a39bb6;hb=2280ddeea5fd82554696f1caa97f7a485a035da4;hp=e840aaf96c24cc92d3094ebcccfbea15fb430d49;hpb=b2a13907a86eb23b96452c27729d16f658cbad53;p=openocd.git diff --git a/src/target/avrt.h b/src/target/avrt.h index e840aaf96c..145f836f1a 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 */