From: Zachary T Welch Date: Sun, 22 Nov 2009 12:13:56 +0000 (-0800) Subject: lpc2000: use register_commands() X-Git-Tag: v0.4.0-rc1~376 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a12a29c28a92f51861957a09d86177625220483b;p=openocd lpc2000: use register_commands() --- diff --git a/src/flash/lpc2000.c b/src/flash/lpc2000.c index 4a934c02..896b7949 100644 --- a/src/flash/lpc2000.c +++ b/src/flash/lpc2000.c @@ -776,16 +776,28 @@ COMMAND_HANDLER(lpc2000_handle_part_id_command) 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 +}; + static int lpc2000_register_commands(struct command_context *cmd_ctx) { - struct command *lpc2000_cmd = COMMAND_REGISTER(cmd_ctx, NULL, "lpc2000", - NULL, COMMAND_ANY, NULL); - - COMMAND_REGISTER(cmd_ctx, lpc2000_cmd, "part_id", - lpc2000_handle_part_id_command, COMMAND_EXEC, - "print part id of lpc2000 flash bank "); - - return ERROR_OK; + return register_commands(cmd_ctx, NULL, lpc2000_command_handlers); } struct flash_driver lpc2000_flash = {