NOR: bugfix "flash fill[bwh] ..." helptext

These commands don't have a "bank" parameter.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
David Brownell 2009-12-16 11:57:59 -08:00
parent fcd3c52611
commit 47998a55e0
1 changed files with 3 additions and 3 deletions

View File

@ -697,21 +697,21 @@ static const struct command_registration flash_exec_command_handlers[] = {
.name = "fillw", .name = "fillw",
.handler = &handle_flash_fill_command, .handler = &handle_flash_fill_command,
.mode = COMMAND_EXEC, .mode = COMMAND_EXEC,
.usage = "<bank> <address> <word_pattern> <count>", .usage = "<address> <word_pattern> <count>",
.help = "fill with pattern (no autoerase)", .help = "fill with pattern (no autoerase)",
}, },
{ {
.name = "fillh", .name = "fillh",
.handler = &handle_flash_fill_command, .handler = &handle_flash_fill_command,
.mode = COMMAND_EXEC, .mode = COMMAND_EXEC,
.usage = "<bank> <address> <halfword_pattern> <count>", .usage = "<address> <halfword_pattern> <count>",
.help = "fill with pattern", .help = "fill with pattern",
}, },
{ {
.name = "fillb", .name = "fillb",
.handler = &handle_flash_fill_command, .handler = &handle_flash_fill_command,
.mode = COMMAND_EXEC, .mode = COMMAND_EXEC,
.usage = "<bank> <address> <byte_pattern> <count>", .usage = "<address> <byte_pattern> <count>",
.help = "fill with pattern", .help = "fill with pattern",
}, },