mips_ejtag_t -> struct mips_ejtag
[fw/openocd] / src / target / cortex_a8.h
index 39d4e77af298b7c67c8f791bd85a814f5d2aaf08..131cddbf9138839c8f086d3a8137eb7eb184a016 100644 (file)
@@ -100,10 +100,10 @@ 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;
-       arm_jtag_t jtag_info;
+       struct arm_jtag jtag_info;
 
        /* Context information */
        uint32_t cpudbg_dscr;
@@ -133,17 +133,17 @@ typedef struct cortex_a8_common_s
        /* Use cortex_a8_read_regs_through_mem for fast register reads */
        int fast_reg_read;
 
-       armv7a_common_t armv7a_common;
-} cortex_a8_common_t;
+       struct armv7a_common armv7a_common;
+};
 
-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 */