summaryrefslogtreecommitdiff
path: root/src/target/avrt.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:49 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit4bc80e5a65dde09ca795e50e77bcfe77b8dd444f (patch)
tree6f23e0cba7a147f97c2bd6711b358042ec5a695f /src/target/avrt.h
parent94f5ed90f1832e81803713f4364de586a69247d4 (diff)
downloadopenocd+libswd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.tar.gz
openocd+libswd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.tar.bz2
openocd+libswd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.tar.xz
openocd+libswd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.zip
mcu_jtag_t -> struct mcu_jtag
Remove misleading typedef and redundant suffix from struct mcu_jtag.
Diffstat (limited to 'src/target/avrt.h')
-rw-r--r--src/target/avrt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/avrt.h b/src/target/avrt.h
index 37ea8e3d..54722ac6 100644
--- a/src/target/avrt.h
+++ b/src/target/avrt.h
@@ -22,14 +22,14 @@
#include "jtag.h"
-typedef struct mcu_jtag_s
+struct mcu_jtag
{
struct jtag_tap *tap;
-} mcu_jtag_t;
+};
typedef struct avr_common_s
{
- mcu_jtag_t jtag_info;
+ struct mcu_jtag jtag_info;
} avr_common_t;
#endif /* AVRT_H */