X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fflash%2Flpc2000.c;h=418b5b0345dff8bff3c3421dc24d92b79a3dc0a4;hp=b60c6cfdeb4313228043f603bccf4e181a33c151;hb=e1ec02bb055fa356b058dddc0a15710e0fdc9870;hpb=ff25e76bad7e57da4ebd363f1b35d4af04acaa67 diff --git a/src/flash/lpc2000.c b/src/flash/lpc2000.c index b60c6cfdeb..418b5b0345 100644 --- a/src/flash/lpc2000.c +++ b/src/flash/lpc2000.c @@ -776,21 +776,28 @@ COMMAND_HANDLER(lpc2000_handle_part_id_command) return ERROR_OK; } -static int lpc2000_register_commands(struct command_context *cmd_ctx) -{ - struct command *lpc2000_cmd = register_command(cmd_ctx, NULL, "lpc2000", - NULL, COMMAND_ANY, NULL); - - register_command(cmd_ctx, lpc2000_cmd, "part_id", - lpc2000_handle_part_id_command, COMMAND_EXEC, - "print part id of lpc2000 flash bank "); - - return ERROR_OK; -} +static const struct command_registration lpc2000_exec_command_handlers[] = { + { + .name = "part_id", + .handler = &lpc2000_handle_part_id_command, + .mode = COMMAND_EXEC, + .help = "print part id of lpc2000 flash bank ", + }, + COMMAND_REGISTRATION_DONE +}; +static const struct command_registration lpc2000_command_handlers[] = { + { + .name = "lpc2000", + .mode = COMMAND_ANY, + .help = "lpc2000 flash command group", + .chain = lpc2000_exec_command_handlers, + }, + COMMAND_REGISTRATION_DONE +}; struct flash_driver lpc2000_flash = { .name = "lpc2000", - .register_commands = &lpc2000_register_commands, + .commands = lpc2000_command_handlers, .flash_bank_command = &lpc2000_flash_bank_command, .erase = &lpc2000_erase, .protect = &lpc2000_protect,