mflash_bank_t -> struct mflash_bank

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

View File

@@ -130,7 +130,7 @@ struct mg_drv_info {
uint32_t tot_sects;
};
typedef struct mflash_bank_s
struct mflash_bank
{
uint32_t base;
@@ -139,7 +139,7 @@ typedef struct mflash_bank_s
struct mflash_gpio_drv *gpio_drv;
target_t *target;
struct mg_drv_info *drv_info;
} mflash_bank_t;
};
int mflash_register_commands(struct command_context_s *cmd_ctx);
int mflash_init_drivers(struct command_context_s *cmd_ctx);