- typo with flash bank help command

- typo with flash erase_sector in texi

git-svn-id: svn://svn.berlios.de/openocd/trunk@1225 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
ntfreak 2008-12-11 15:53:45 +00:00
parent 00b3eb5fed
commit a53c304319
2 changed files with 2 additions and 2 deletions

View File

@ -1950,7 +1950,7 @@ updated information.
@cindex flash protect_check @cindex flash protect_check
@*Check protection state of sectors in flash bank <num>. @*Check protection state of sectors in flash bank <num>.
@option{flash erase_sector} using the same syntax. @option{flash erase_sector} using the same syntax.
@subsection fash erase_sector @subsection flash erase_sector
@b{flash erase_sector} <@var{num}> <@var{first}> <@var{last}> @b{flash erase_sector} <@var{num}> <@var{first}> <@var{last}>
@cindex flash erase_sector @cindex flash erase_sector
@anchor{flash erase_sector} @anchor{flash erase_sector}

View File

@ -144,7 +144,7 @@ int flash_register_commands(struct command_context_s *cmd_ctx)
{ {
flash_cmd = register_command(cmd_ctx, NULL, "flash", NULL, COMMAND_ANY, NULL); flash_cmd = register_command(cmd_ctx, NULL, "flash", NULL, COMMAND_ANY, NULL);
register_command(cmd_ctx, flash_cmd, "bank", handle_flash_bank_command, COMMAND_CONFIG, "flash_bank <driver> <base> <size> <chip_width> <bus_width> <target> [driver_options ...]"); register_command(cmd_ctx, flash_cmd, "bank", handle_flash_bank_command, COMMAND_CONFIG, "flash bank <driver> <base> <size> <chip_width> <bus_width> <target> [driver_options ...]");
return ERROR_OK; return ERROR_OK;
} }