From 74d09617b927ed7011098d5a65087dee1ef1e87a Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:44:08 -0800 Subject: reg_cache_t -> struct reg_cache Remove misleading typedef and redundant suffix from struct reg_cache. --- src/target/arm7tdmi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/target/arm7tdmi.c') diff --git a/src/target/arm7tdmi.c b/src/target/arm7tdmi.c index dc2cfbd3..d1509cbb 100644 --- a/src/target/arm7tdmi.c +++ b/src/target/arm7tdmi.c @@ -639,7 +639,7 @@ static void arm7tdmi_branch_resume_thumb(target_t *target) static void arm7tdmi_build_reg_cache(target_t *target) { - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); struct armv4_5_common_s *armv4_5 = target_to_armv4_5(target); (*cache_p) = armv4_5_build_reg_cache(target, armv4_5); @@ -655,8 +655,8 @@ int arm7tdmi_examine(struct target_s *target) if (!target_was_examined(target)) { /* get pointers to arch-specific information */ - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); - reg_cache_t *t = embeddedice_build_reg_cache(target, arm7_9); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache *t = embeddedice_build_reg_cache(target, arm7_9); if (t == NULL) return ERROR_FAIL; -- cgit v1.2.3