diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2019-01-04 18:16:00 +0100 |
---|---|---|
committer | Tomas Vanek <vanekt@fbl.cz> | 2019-04-07 08:19:34 +0100 |
commit | b61e454869c988e7fafc1c16982ccfec04415b51 (patch) | |
tree | 8fa731aa7ccd09ddde2bc427ebc6a3e10a08a67f /src/target/xscale.c | |
parent | b6ea92247de948579715379abb591e61e887e7a5 (diff) | |
download | riscv-openocd-b61e454869c988e7fafc1c16982ccfec04415b51.zip riscv-openocd-b61e454869c988e7fafc1c16982ccfec04415b51.tar.gz riscv-openocd-b61e454869c988e7fafc1c16982ccfec04415b51.tar.bz2 |
Set empty usage field for commands that do not need parameters
The missing field causes runtime debug message
BUG: command '%s' does not have the '.usage' field filled out
While there, fix some minor typo in the help messages:
s/deasert/deassert/
s/Deasert/Deassert/
Change-Id: If3dd18265cda103ca0d05609f67f4ca58e7cbb27
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5024
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/target/xscale.c')
-rw-r--r-- | src/target/xscale.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/xscale.c b/src/target/xscale.c index 09abd9e..34c5f00 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -3577,6 +3577,7 @@ static const struct command_registration xscale_exec_command_handlers[] = { .handler = xscale_handle_cache_info_command, .mode = COMMAND_EXEC, .help = "display information about CPU caches", + .usage = "", }, { .name = "mmu", |