From 55926f576f99a0c67b2836fedf0dc1bfc1260428 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:39:48 -0800 Subject: arm11_common_t -> struct arm11_common Remove misleading typedef and redundant suffix from struct arm11_common. --- src/target/arm11.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/target/arm11.h') diff --git a/src/target/arm11.h b/src/target/arm11.h index 4bbc4561..464782da 100644 --- a/src/target/arm11.h +++ b/src/target/arm11.h @@ -78,7 +78,7 @@ enum arm11_debug_version ARM11_DEBUG_V7_CP14 = 0x04, }; -typedef struct arm11_common_s +struct arm11_common { target_t * target; /**< Reference back to the owner */ @@ -117,7 +117,7 @@ typedef struct arm11_common_s // GA reg_cache_t *core_cache; -} arm11_common_t; +}; /** @@ -184,8 +184,8 @@ typedef struct arm11_reg_state_s int arm11_register_commands(struct command_context_s *cmd_ctx); -int arm11_read_etm(arm11_common_t * arm11, uint8_t address, uint32_t *value); -int arm11_write_etm(arm11_common_t * arm11, uint8_t address, uint32_t value); +int arm11_read_etm(struct arm11_common * arm11, uint8_t address, uint32_t *value); +int arm11_write_etm(struct arm11_common * arm11, uint8_t address, uint32_t value); -- cgit v1.2.3