summaryrefslogtreecommitdiff
path: root/src/target/avrt.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:52 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commite7f65c5a116802c4e510fe212b26e9a020de0b3e (patch)
tree55945c17aaa2ceaa1efc0b4f153c16a48b21511d /src/target/avrt.h
parent4bc80e5a65dde09ca795e50e77bcfe77b8dd444f (diff)
downloadopenocd+libswd-e7f65c5a116802c4e510fe212b26e9a020de0b3e.tar.gz
openocd+libswd-e7f65c5a116802c4e510fe212b26e9a020de0b3e.tar.bz2
openocd+libswd-e7f65c5a116802c4e510fe212b26e9a020de0b3e.tar.xz
openocd+libswd-e7f65c5a116802c4e510fe212b26e9a020de0b3e.zip
avr_common_t -> struct avr_common
Remove misleading typedef and redundant suffix from struct avr_common.
Diffstat (limited to 'src/target/avrt.h')
-rw-r--r--src/target/avrt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/avrt.h b/src/target/avrt.h
index 54722ac6..145f836f 100644
--- a/src/target/avrt.h
+++ b/src/target/avrt.h
@@ -27,9 +27,9 @@ struct mcu_jtag
struct jtag_tap *tap;
};
-typedef struct avr_common_s
+struct avr_common
{
struct mcu_jtag jtag_info;
-} avr_common_t;
+};
#endif /* AVRT_H */