X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fmflash.c;h=5790a9583ceab2e258893a1ee5423f8bae344093;hb=c7b2cad52dbc59b53d6f1734a443d3ad5e826a42;hp=c846171970944c132af4db68470f1eee0858558e;hpb=bb6b9988cbd32f5f87e228340172aa1004775df2;p=openocd.git diff --git a/src/flash/mflash.c b/src/flash/mflash.c index c846171970..5790a9583c 100644 --- a/src/flash/mflash.c +++ b/src/flash/mflash.c @@ -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 mflash_bank_t *mflash_bank; +static struct mflash_bank *mflash_bank; static struct mflash_gpio_drv pxa270_gpio = { .name = "pxa270", @@ -1296,7 +1296,7 @@ COMMAND_HANDLER(mg_bank_cmd) 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); /// @todo Verify how this parsing should work, then document it. char *str;