summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-16 11:57:59 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-16 11:57:59 -0800
commit47998a55e0f66d513b52f7851901bc79bc1f7213 (patch)
tree68aea0e8cb29be088201c92a9235eb317cfa73c6 /src
parentfcd3c52611009559b1954a43463e7015870d36c2 (diff)
downloadopenocd+libswd-47998a55e0f66d513b52f7851901bc79bc1f7213.tar.gz
openocd+libswd-47998a55e0f66d513b52f7851901bc79bc1f7213.tar.bz2
openocd+libswd-47998a55e0f66d513b52f7851901bc79bc1f7213.tar.xz
openocd+libswd-47998a55e0f66d513b52f7851901bc79bc1f7213.zip
NOR: bugfix "flash fill[bwh] ..." helptext
These commands don't have a "bank" parameter. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src')
-rw-r--r--src/flash/nor/tcl.c6
1 files changed, 3 insertions, 3 deletions
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 = "<bank> <address> <word_pattern> <count>",
+ .usage = "<address> <word_pattern> <count>",
.help = "fill with pattern (no autoerase)",
},
{
.name = "fillh",
.handler = &handle_flash_fill_command,
.mode = COMMAND_EXEC,
- .usage = "<bank> <address> <halfword_pattern> <count>",
+ .usage = "<address> <halfword_pattern> <count>",
.help = "fill with pattern",
},
{
.name = "fillb",
.handler = &handle_flash_fill_command,
.mode = COMMAND_EXEC,
- .usage = "<bank> <address> <byte_pattern> <count>",
+ .usage = "<address> <byte_pattern> <count>",
.help = "fill with pattern",
},