summaryrefslogtreecommitdiff
path: root/src/target/armv7a.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:29 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit248448ee3a5f4f97307f1d5af4ef940529478a34 (patch)
treeae616369675a8917cd1859d3fe0f98e1ab832d40 /src/target/armv7a.h
parentf6dae0cf84de26846a18f3fcaea842ccd898a5c1 (diff)
downloadopenocd+libswd-248448ee3a5f4f97307f1d5af4ef940529478a34.tar.gz
openocd+libswd-248448ee3a5f4f97307f1d5af4ef940529478a34.tar.bz2
openocd+libswd-248448ee3a5f4f97307f1d5af4ef940529478a34.tar.xz
openocd+libswd-248448ee3a5f4f97307f1d5af4ef940529478a34.zip
armv7a_common_t -> struct armv7a_common
Remove misleading typedef and redundant suffix from struct armv7a_common.
Diffstat (limited to 'src/target/armv7a.h')
-rw-r--r--src/target/armv7a.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index b12c62c1..e5615bb5 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -89,7 +89,7 @@ enum
#define V2POWUR 6
#define V2POWUW 7
-typedef struct armv7a_common_s
+struct armv7a_common
{
int common_magic;
reg_cache_t *core_cache;
@@ -124,12 +124,12 @@ typedef struct armv7a_common_s
void (*pre_restore_context)(target_t *target);
void (*post_restore_context)(target_t *target);
-} armv7a_common_t;
+};
-static inline struct armv7a_common_s *
+static inline struct armv7a_common *
target_to_armv7a(struct target_s *target)
{
- return container_of(target->arch_info, struct armv7a_common_s,
+ return container_of(target->arch_info, struct armv7a_common,
armv4_5_common);
}
@@ -146,14 +146,14 @@ typedef struct armv7a_core_reg_s
int num;
enum armv7a_mode mode;
target_t *target;
- armv7a_common_t *armv7a_common;
+ struct armv7a_common *armv7a_common;
} armv7a_core_reg_t;
int armv7a_arch_state(struct target_s *target);
reg_cache_t *armv7a_build_reg_cache(target_t *target,
- armv7a_common_t *armv7a_common);
+ struct armv7a_common *armv7a_common);
int armv7a_register_commands(struct command_context_s *cmd_ctx);
-int armv7a_init_arch_info(target_t *target, armv7a_common_t *armv7a);
+int armv7a_init_arch_info(target_t *target, struct armv7a_common *armv7a);
/* map psr mode bits to linear number */
static inline int armv7a_mode_to_number(enum armv7a_mode mode)