diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:41:49 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:10 -0800 |
commit | 4bc80e5a65dde09ca795e50e77bcfe77b8dd444f (patch) | |
tree | 6f23e0cba7a147f97c2bd6711b358042ec5a695f /src/target/avrt.h | |
parent | 94f5ed90f1832e81803713f4364de586a69247d4 (diff) | |
download | riscv-openocd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.zip riscv-openocd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.tar.gz riscv-openocd-4bc80e5a65dde09ca795e50e77bcfe77b8dd444f.tar.bz2 |
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.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/avrt.h b/src/target/avrt.h index 37ea8e3d..54722ac 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 */ |