From bb6b9988cbd32f5f87e228340172aa1004775df2 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 07:38:21 -0800 Subject: [PATCH] mg_drv_info_t -> struct mg_drv_info Remove misleading typedef and redundant suffix from struct mg_drv_info. --- src/flash/mflash.c | 2 +- src/flash/mflash.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/flash/mflash.c b/src/flash/mflash.c index 7696f0d891..c846171970 100644 --- a/src/flash/mflash.c +++ b/src/flash/mflash.c @@ -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); diff --git a/src/flash/mflash.h b/src/flash/mflash.h index c09120b6ae..da0c056e0e 100644 --- a/src/flash/mflash.h +++ b/src/flash/mflash.h @@ -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); -- 2.30.2