stm32g0: Removed some needless casts from the command list build

This commit is contained in:
dragonmux 2022-08-09 07:13:59 +01:00 committed by Piotr Esden-Tempski
parent 6b5c492bc7
commit 1aa1a3598a
1 changed files with 4 additions and 4 deletions

View File

@ -168,10 +168,10 @@ static bool stm32g0_cmd_option(target *t, int argc, const char **argv);
static bool stm32g0_cmd_irreversible(target *t, int argc, const char **argv);
const struct command_s stm32g0_cmd_list[] = {
{ "erase_bank 1|2", (cmd_handler)stm32g0_cmd_erase_bank, "Erase specified Flash bank" },
{ "option", (cmd_handler)stm32g0_cmd_option, "Manipulate option bytes" },
{ "irreversible", (cmd_handler)stm32g0_cmd_irreversible, "Allow irreversible operations: (enable|disable)" },
{ NULL, NULL, NULL }
{ "erase_bank 1|2", stm32g0_cmd_erase_bank, "Erase specified Flash bank" },
{ "option", stm32g0_cmd_option, "Manipulate option bytes" },
{ "irreversible", stm32g0_cmd_irreversible, "Allow irreversible operations: (enable|disable)" },
{ NULL, NULL, NULL },
};
static void stm32g0_add_flash(target *t, uint32_t addr, size_t length,