mg_drv_info_t -> struct mg_drv_info

Remove misleading typedef and redundant suffix from struct mg_drv_info.
This commit is contained in:
Zachary T Welch
2009-11-13 07:38:21 -08:00
parent fc01dd6a13
commit bb6b9988cb
2 changed files with 4 additions and 4 deletions

View 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);