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

@@ -863,6 +863,7 @@ static const struct command_registration jtag_subcommand_handlers[] = {
.mode = COMMAND_ANY,
.handler = handle_jtag_init_command,
.help = "initialize jtag scan chain",
.usage = ""
},
{
.name = "arp_init",
@@ -1356,6 +1357,7 @@ static const struct command_registration jtag_command_handlers[] = {
.handler = handle_scan_chain_command,
.mode = COMMAND_ANY,
.help = "print current scan chain configuration",
.usage = ""
},
{
.name = "jtag_reset",
@@ -1420,6 +1422,7 @@ static const struct command_registration jtag_command_handlers[] = {
.name = "jtag",
.mode = COMMAND_ANY,
.help = "perform jtag tap actions",
.usage = "",
.chain = jtag_subcommand_handlers,
},