mcu_jtag_t -> struct mcu_jtag

Remove misleading typedef and redundant suffix from struct mcu_jtag.
This commit is contained in:
Zachary T Welch 2009-11-13 08:41:49 -08:00
parent 94f5ed90f1
commit 4bc80e5a65
1 changed files with 3 additions and 3 deletions

View File

@ -22,14 +22,14 @@
#include "jtag.h" #include "jtag.h"
typedef struct mcu_jtag_s struct mcu_jtag
{ {
struct jtag_tap *tap; struct jtag_tap *tap;
} mcu_jtag_t; };
typedef struct avr_common_s typedef struct avr_common_s
{ {
mcu_jtag_t jtag_info; struct mcu_jtag jtag_info;
} avr_common_t; } avr_common_t;
#endif /* AVRT_H */ #endif /* AVRT_H */