diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2010-01-08 20:16:05 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2010-01-08 20:16:05 -0800 |
commit | b800eb0336a190ed53da90a2b7216a35bfbfdb23 (patch) | |
tree | 6518ae58ec1510458c93546756d38b08b4eed7ef /src | |
parent | 1a2c258ed4537ca95b50e1f9e776215d82de2a86 (diff) | |
download | riscv-openocd-b800eb0336a190ed53da90a2b7216a35bfbfdb23.zip riscv-openocd-b800eb0336a190ed53da90a2b7216a35bfbfdb23.tar.gz riscv-openocd-b800eb0336a190ed53da90a2b7216a35bfbfdb23.tar.bz2 |
*SVF: help/usage updates
Usage messages should use the same EBNF as the User's Guide;
no angle brackets. Be more complete too ... some params were
missing.
Don't use "&function"; its name is its address.
Unrelated: fix typo in one "target.c" usage message.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/svf/svf.c | 4 | ||||
-rw-r--r-- | src/target/target.c | 2 | ||||
-rw-r--r-- | src/xsvf/xsvf.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/svf/svf.c b/src/svf/svf.c index dfdecbc..7cb2200 100644 --- a/src/svf/svf.c +++ b/src/svf/svf.c @@ -1461,10 +1461,10 @@ static int svf_run_command(struct command_context *cmd_ctx, char *cmd_str) static const struct command_registration svf_command_handlers[] = { { .name = "svf", - .handler = &handle_svf_command, + .handler = handle_svf_command, .mode = COMMAND_EXEC, .help = "Runs a SVF file.", - .usage = "<file>", + .usage = "filename ['quiet']", }, COMMAND_REGISTRATION_DONE }; diff --git a/src/target/target.c b/src/target/target.c index c29c45e..7994aff 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -4916,7 +4916,7 @@ static const struct command_registration target_exec_command_handlers[] = { .handler = handle_virt2phys_command, .mode = COMMAND_ANY, .help = "translate a virtual address into a physical address", - .usage = "virual_address", + .usage = "virtual_address", }, { .name = "reg", diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index b1ddea9..539fbdc 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -1053,13 +1053,13 @@ COMMAND_HANDLER(handle_xsvf_command) static const struct command_registration xsvf_command_handlers[] = { { .name = "xsvf", - .handler = &handle_xsvf_command, + .handler = handle_xsvf_command, .mode = COMMAND_EXEC, .help = "Runs a XSVF file. If 'virt2' is given, xruntest " "counts are interpreted as TCK cycles rather than " "as microseconds. Without the 'quiet' option, all " "comments, retries, and mismatches will be reported.", - .usage = "<file> [virt2] [quiet]", + .usage = "(tapname|'plain') filename ['virt2'] ['quiet']", }, COMMAND_REGISTRATION_DONE }; |