verify: display up to 128 diff's
[fw/openocd] / src / target / avrt.h
index e840aaf96c24cc92d3094ebcccfbea15fb430d49..221296a9545c8167696166dfee0f72ae5dc44537 100644 (file)
 #ifndef AVRT_H
 #define AVRT_H
 
-typedef struct mcu_jtag_s
+#include <jtag/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 */