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>
This commit is contained in:
Spencer Oliver
2012-01-16 13:35:23 +00:00
parent eae6353ca4
commit 0c2f8b6eb8
29 changed files with 52 additions and 0 deletions

View File

@@ -2603,6 +2603,7 @@ static const struct command_registration gdb_command_handlers[] = {
.help = "next stepi will return immediately allowing "
"GDB to fetch register state without affecting "
"target state",
.usage = ""
},
{
.name = "gdb_port",

View File

@@ -625,6 +625,7 @@ static const struct command_registration server_command_handlers[] = {
.name = "shutdown",
.handler = &handle_shutdown_command,
.mode = COMMAND_ANY,
.usage = "",
.help = "shut the server down",
},
COMMAND_REGISTRATION_DONE

View File

@@ -611,6 +611,7 @@ static const struct command_registration telnet_command_handlers[] = {
.name = "exit",
.handler = handle_exit_command,
.mode = COMMAND_EXEC,
.usage = "",
.help = "exit telnet session",
},
{