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

View File

@ -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 */