From: David Brownell Date: Wed, 16 Dec 2009 19:57:59 +0000 (-0800) Subject: NOR: bugfix "flash fill[bwh] ..." helptext X-Git-Tag: v0.4.0-rc1~30 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=47998a55e0f66d513b52f7851901bc79bc1f7213;p=openocd NOR: bugfix "flash fill[bwh] ..." helptext These commands don't have a "bank" parameter. Signed-off-by: David Brownell --- diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index 6ab710bb..1e933b27 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -697,21 +697,21 @@ static const struct command_registration flash_exec_command_handlers[] = { .name = "fillw", .handler = &handle_flash_fill_command, .mode = COMMAND_EXEC, - .usage = "
", + .usage = "
", .help = "fill with pattern (no autoerase)", }, { .name = "fillh", .handler = &handle_flash_fill_command, .mode = COMMAND_EXEC, - .usage = "
", + .usage = "
", .help = "fill with pattern", }, { .name = "fillb", .handler = &handle_flash_fill_command, .mode = COMMAND_EXEC, - .usage = "
", + .usage = "
", .help = "fill with pattern", },