2
0
mirror of git://git.code.sf.net/p/openocd/code synced 2025-07-24 10:57:11 +10:00

swjdp_reg_t -> struct swjdp_reg

Remove misleading typedef and redundant suffix from struct swjdp_reg.
This commit is contained in:
Zachary T Welch 2009-11-13 08:40:27 -08:00
parent 785115a6a0
commit 6ba48a1b44

View File

@ -76,11 +76,11 @@
/* Freerunning transactions with delays and overrun checking */
#define TRANS_MODE_COMPOSITE 2
typedef struct swjdp_reg_s
struct swjdp_reg
{
int addr;
arm_jtag_t *jtag_info;
} swjdp_reg_t;
};
typedef struct swjdp_common_s
{