aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2018-05-27 17:37:38 +0200
committerMatthias Welwarsky <matthias@welwarsky.de>2018-06-04 09:17:03 +0100
commit74831e74c8a6ac445a8320d2314bcc3c93ddec22 (patch)
tree5d866629307204ee65b36c61c3a0b47a20c8c1c2 /src
parentcad39b73904dfe8f5270603aa54a628e59f507d3 (diff)
downloadriscv-openocd-74831e74c8a6ac445a8320d2314bcc3c93ddec22.zip
riscv-openocd-74831e74c8a6ac445a8320d2314bcc3c93ddec22.tar.gz
riscv-openocd-74831e74c8a6ac445a8320d2314bcc3c93ddec22.tar.bz2
target: fix syntax in help message
The name of the command is already printed before the string in ->usage, thus it appears twice. E.g. > help examine stm32f4x.cpu arp_examine arp_examine ['allow-defer'] used internally for reset processing stm32f4x.cpu examine_deferred examine_deferred used internally for reset processing stm32f4x.cpu was_examined was_examined used internally for reset processing Remove the command name from the string in ->usage. Change-Id: If3b1368ffff8a94eb629ae3679e2e5f2f11ae92e Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/4536 Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
Diffstat (limited to 'src')
-rw-r--r--src/target/target.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 75555c1..c9b2006 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -5433,21 +5433,19 @@ static const struct command_registration target_instance_command_handlers[] = {
.mode = COMMAND_EXEC,
.jim_handler = jim_target_examine,
.help = "used internally for reset processing",
- .usage = "arp_examine ['allow-defer']",
+ .usage = "['allow-defer']",
},
{
.name = "was_examined",
.mode = COMMAND_EXEC,
.jim_handler = jim_target_was_examined,
.help = "used internally for reset processing",
- .usage = "was_examined",
},
{
.name = "examine_deferred",
.mode = COMMAND_EXEC,
.jim_handler = jim_target_examine_deferred,
.help = "used internally for reset processing",
- .usage = "examine_deferred",
},
{
.name = "arp_halt_gdb",