]> git.sur5r.net Git - openocd/blobdiff - src/target/avrt.h
arm7_9_common: use register_commands()
[openocd] / src / target / avrt.h
index e840aaf96c24cc92d3094ebcccfbea15fb430d49..145f836f1a79496e1ba4d03cbf15895cc1a39bb6 100644 (file)
 #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 */