target_t -> struct target
[fw/openocd] / src / flash / mflash.h
index c09120b6ae70d7d2498f762096f724650dcaf2a7..a2bd5b3a888da748982d64acdc51d3ef543ae5c3 100644 (file)
@@ -125,21 +125,21 @@ typedef struct _mg_pll_t
        unsigned char  output_div;      /* 2bit divider */
 } mg_pll_t;
 
-typedef struct mg_drv_info_s {
+struct mg_drv_info {
        mg_io_type_drv_info drv_id;
        uint32_t tot_sects;
-} mg_drv_info_t;
+};
 
-typedef struct mflash_bank_s
+struct mflash_bank
 {
        uint32_t base;
 
        struct mflash_gpio_num rst_pin;
 
        struct mflash_gpio_drv *gpio_drv;
-       target_t *target;
-       mg_drv_info_t *drv_info;
-} mflash_bank_t;
+       struct target *target;
+       struct mg_drv_info *drv_info;
+};
 
 int mflash_register_commands(struct command_context_s *cmd_ctx);
 int mflash_init_drivers(struct command_context_s *cmd_ctx);