From 4bc80e5a65dde09ca795e50e77bcfe77b8dd444f Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:41:49 -0800 Subject: [PATCH 1/1] mcu_jtag_t -> struct mcu_jtag Remove misleading typedef and redundant suffix from struct mcu_jtag. --- src/target/avrt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/target/avrt.h b/src/target/avrt.h index 37ea8e3dc5..54722ac6ba 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 */ -- 2.30.2