From: Zachary T Welch Date: Fri, 13 Nov 2009 16:40:27 +0000 (-0800) Subject: swjdp_reg_t -> struct swjdp_reg X-Git-Tag: v0.4.0-rc1~692 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6ba48a1b44d34e445af17ae66efb7e168f911a0f swjdp_reg_t -> struct swjdp_reg Remove misleading typedef and redundant suffix from struct swjdp_reg. --- diff --git a/src/target/arm_adi_v5.h b/src/target/arm_adi_v5.h index 90b4cbd037..a52a096418 100644 --- a/src/target/arm_adi_v5.h +++ b/src/target/arm_adi_v5.h @@ -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 {