mflash_bank_t -> struct mflash_bank
Remove misleading typedef and redundant suffix from struct mflash_bank.
This commit is contained in:
parent
bb6b9988cb
commit
79338ec6c2
|
@ -34,7 +34,7 @@ static int pxa270_set_gpio_output_val (struct mflash_gpio_num gpio, uint8_t val)
|
||||||
|
|
||||||
static command_t *mflash_cmd;
|
static command_t *mflash_cmd;
|
||||||
|
|
||||||
static mflash_bank_t *mflash_bank;
|
static struct mflash_bank *mflash_bank;
|
||||||
|
|
||||||
static struct mflash_gpio_drv pxa270_gpio = {
|
static struct mflash_gpio_drv pxa270_gpio = {
|
||||||
.name = "pxa270",
|
.name = "pxa270",
|
||||||
|
@ -1296,7 +1296,7 @@ COMMAND_HANDLER(mg_bank_cmd)
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
mflash_bank = calloc(sizeof(mflash_bank_t), 1);
|
mflash_bank = calloc(sizeof(struct mflash_bank), 1);
|
||||||
COMMAND_PARSE_NUMBER(u32, args[1], mflash_bank->base);
|
COMMAND_PARSE_NUMBER(u32, args[1], mflash_bank->base);
|
||||||
/// @todo Verify how this parsing should work, then document it.
|
/// @todo Verify how this parsing should work, then document it.
|
||||||
char *str;
|
char *str;
|
||||||
|
|
|
@ -130,7 +130,7 @@ struct mg_drv_info {
|
||||||
uint32_t tot_sects;
|
uint32_t tot_sects;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct mflash_bank_s
|
struct mflash_bank
|
||||||
{
|
{
|
||||||
uint32_t base;
|
uint32_t base;
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ typedef struct mflash_bank_s
|
||||||
struct mflash_gpio_drv *gpio_drv;
|
struct mflash_gpio_drv *gpio_drv;
|
||||||
target_t *target;
|
target_t *target;
|
||||||
struct mg_drv_info *drv_info;
|
struct mg_drv_info *drv_info;
|
||||||
} mflash_bank_t;
|
};
|
||||||
|
|
||||||
int mflash_register_commands(struct command_context_s *cmd_ctx);
|
int mflash_register_commands(struct command_context_s *cmd_ctx);
|
||||||
int mflash_init_drivers(struct command_context_s *cmd_ctx);
|
int mflash_init_drivers(struct command_context_s *cmd_ctx);
|
||||||
|
|
Loading…
Reference in New Issue