From a1971ecacf6450aa57192680fc201928deb46b7d Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:42:11 -0800 Subject: cortex_a8_common_t -> struct cortex_a8_common Remove misleading typedef and redundant suffix from struct cortex_a8_common. --- src/target/cortex_a8.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/target/cortex_a8.h') diff --git a/src/target/cortex_a8.h b/src/target/cortex_a8.h index 8216ffbb..131cddbf 100644 --- a/src/target/cortex_a8.h +++ b/src/target/cortex_a8.h @@ -100,7 +100,7 @@ typedef struct cortex_a8_wrp_s uint8_t WRPn; } cortex_a8_wrp_t; -typedef struct cortex_a8_common_s +struct cortex_a8_common { int common_magic; struct arm_jtag jtag_info; @@ -134,16 +134,16 @@ typedef struct cortex_a8_common_s int fast_reg_read; struct armv7a_common armv7a_common; -} cortex_a8_common_t; +}; -static inline struct cortex_a8_common_s * +static inline struct cortex_a8_common * target_to_cortex_a8(struct target_s *target) { - return container_of(target->arch_info, struct cortex_a8_common_s, + return container_of(target->arch_info, struct cortex_a8_common, armv7a_common.armv4_5_common); } int cortex_a8_init_arch_info(target_t *target, - cortex_a8_common_t *cortex_a8, struct jtag_tap *tap); + struct cortex_a8_common *cortex_a8, struct jtag_tap *tap); #endif /* CORTEX_A8_H */ -- cgit v1.2.3-18-g5258