mg_drv_info_t -> struct mg_drv_info
authorZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 15:38:21 +0000 (07:38 -0800)
committerZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 19:58:07 +0000 (11:58 -0800)
Remove misleading typedef and redundant suffix from struct mg_drv_info.

src/flash/mflash.c
src/flash/mflash.h

index 7696f0d8919f9444e8050cc12523e2c88f95141c..c846171970944c132af4db68470f1eee0858558e 100644 (file)
@@ -349,7 +349,7 @@ static int mg_dsk_drv_info(void)
        LOG_INFO("mflash: read drive info");
 
        if (! mflash_bank->drv_info)
-               mflash_bank->drv_info = malloc(sizeof(mg_drv_info_t));
+               mflash_bank->drv_info = malloc(sizeof(struct mg_drv_info));
 
        target_read_memory(target, mg_buff, 2, sizeof(mg_io_type_drv_info) >> 1,
                        (uint8_t *)&mflash_bank->drv_info->drv_id);
index c09120b6ae70d7d2498f762096f724650dcaf2a7..da0c056e0ecf767fd288becb3884a571cfb76acf 100644 (file)
@@ -125,10 +125,10 @@ 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
 {
@@ -138,7 +138,7 @@ typedef struct mflash_bank_s
 
        struct mflash_gpio_drv *gpio_drv;
        target_t *target;
-       mg_drv_info_t *drv_info;
+       struct mg_drv_info *drv_info;
 } mflash_bank_t;
 
 int mflash_register_commands(struct command_context_s *cmd_ctx);