From 0f1163e823c6ca3c2a81fa296157f5dde0635fea Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 10:11:13 -0800 Subject: target_t -> struct target Remove misleading typedef and redundant suffix from struct target. --- src/target/arm966e.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/target/arm966e.h') diff --git a/src/target/arm966e.h b/src/target/arm966e.h index e6155b5c..74e1a030 100644 --- a/src/target/arm966e.h +++ b/src/target/arm966e.h @@ -35,15 +35,15 @@ struct arm966e_common }; static inline struct arm966e_common * -target_to_arm966(struct target_s *target) +target_to_arm966(struct target *target) { return container_of(target->arch_info, struct arm966e_common, arm9tdmi_common.arm7_9_common.armv4_5_common); } -int arm966e_init_arch_info(target_t *target, +int arm966e_init_arch_info(struct target *target, struct arm966e_common *arm966e, struct jtag_tap *tap); int arm966e_register_commands(struct command_context_s *cmd_ctx); -int arm966e_write_cp15(target_t *target, int reg_addr, uint32_t value); +int arm966e_write_cp15(struct target *target, int reg_addr, uint32_t value); #endif /* ARM966E_H */ -- cgit v1.2.3