Remove misleading typedef and redundant suffix from struct mflash_bank.
 
 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",
                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;
 
        uint32_t tot_sects;
 };
 
-typedef struct mflash_bank_s
+struct mflash_bank
 {
        uint32_t base;
 
        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);