aboutsummaryrefslogtreecommitdiff
path: root/src/target/cortex_a.c
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-01-16 13:35:23 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-01-18 21:45:02 +0000
commit0c2f8b6eb8f4b379aa0c78caba73ec1ebaae8414 (patch)
tree3f8761f0c60686a39c4b82b7ef48beb1c24aaf27 /src/target/cortex_a.c
parenteae6353ca459e38289d6d619772ef88ad24cc5c8 (diff)
downloadriscv-openocd-0c2f8b6eb8f4b379aa0c78caba73ec1ebaae8414.zip
riscv-openocd-0c2f8b6eb8f4b379aa0c78caba73ec1ebaae8414.tar.gz
riscv-openocd-0c2f8b6eb8f4b379aa0c78caba73ec1ebaae8414.tar.bz2
cmd: add missing usage vars
we should have caught them all - hopefully. Change-Id: I35435317fccaf5ad0216244d69f76db6857bb582 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/381 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/target/cortex_a.c')
-rwxr-xr-xsrc/target/cortex_a.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/target/cortex_a.c b/src/target/cortex_a.c
index 0c2247e..c9401af 100755
--- a/src/target/cortex_a.c
+++ b/src/target/cortex_a.c
@@ -2637,29 +2637,34 @@ static const struct command_registration cortex_a8_exec_command_handlers[] = {
.handler = cortex_a8_handle_cache_info_command,
.mode = COMMAND_EXEC,
.help = "display information about target caches",
+ .usage = "",
},
{
.name = "dbginit",
.handler = cortex_a8_handle_dbginit_command,
.mode = COMMAND_EXEC,
.help = "Initialize core debug",
+ .usage = "",
},
{ .name ="smp_off",
.handler = cortex_a8_handle_smp_off_command,
.mode = COMMAND_EXEC,
.help = "Stop smp handling",
+ .usage = "",
},
{
.name ="smp_on",
.handler = cortex_a8_handle_smp_on_command,
.mode = COMMAND_EXEC,
.help = "Restart smp handling",
+ .usage = "",
},
{
.name ="smp_gdb",
.handler = cortex_a8_handle_smp_gdb_command,
.mode = COMMAND_EXEC,
.help = "display/fix current core played to gdb",
+ .usage = "",
},
@@ -2676,6 +2681,7 @@ static const struct command_registration cortex_a8_command_handlers[] = {
.name = "cortex_a8",
.mode = COMMAND_ANY,
.help = "Cortex-A8 command group",
+ .usage = "",
.chain = cortex_a8_exec_command_handlers,
},
COMMAND_REGISTRATION_DONE