From: David Brownell Date: Fri, 8 Jan 2010 00:41:42 +0000 (-0800) Subject: misc ARM help/usage updates X-Git-Tag: v0.4.0-rc2~126 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=12c143d5948355b3b54c9c0decc779177b22d5d9 misc ARM help/usage updates Usage syntax messages have the same EBNF as the User's Guide; there should be no angle brackets in either place. Uupdate some helptext to be more accurate. Don't use "&function"; functions are like arrays, their address is their name. Signed-off-by: David Brownell --- diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c index 4ac92a249c..e099919b52 100644 --- a/src/target/arm926ejs.c +++ b/src/target/arm926ejs.c @@ -757,7 +757,7 @@ static int arm926ejs_mmu(struct target *target, int *enabled) static const struct command_registration arm926ejs_exec_command_handlers[] = { { .name = "cache_info", - .handler = &arm926ejs_handle_cache_info_command, + .handler = arm926ejs_handle_cache_info_command, .mode = COMMAND_EXEC, .help = "display information about target caches", diff --git a/src/target/arm9tdmi.c b/src/target/arm9tdmi.c index ae0c4e05ed..823e962ed0 100644 --- a/src/target/arm9tdmi.c +++ b/src/target/arm9tdmi.c @@ -918,7 +918,9 @@ static const struct command_registration arm9tdmi_exec_command_handlers[] = { .name = "vector_catch", .handler = handle_arm9tdmi_catch_vectors_command, .mode = COMMAND_EXEC, - .usage = "[all|none|reset|undef|swi|pabt|dabt|irq|fiq] ...", + .help = "Display, after optionally updating, configuration " + "of vector catch unit.", + .usage = "[all|none|(reset|undef|swi|pabt|dabt|irq|fiq)*]", }, COMMAND_REGISTRATION_DONE }; diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c index 1c4923b9d2..c7b73676af 100644 --- a/src/target/armv4_5.c +++ b/src/target/armv4_5.c @@ -928,22 +928,22 @@ static int jim_mcrmrc(Jim_Interp *interp, int argc, Jim_Obj *const *argv) static const struct command_registration arm_exec_command_handlers[] = { { .name = "reg", - .handler = &handle_armv4_5_reg_command, + .handler = handle_armv4_5_reg_command, .mode = COMMAND_EXEC, .help = "display ARM core registers", }, { .name = "core_state", - .handler = &handle_armv4_5_core_state_command, + .handler = handle_armv4_5_core_state_command, .mode = COMMAND_EXEC, - .usage = "", + .usage = "['arm'|'thumb']", .help = "display/change ARM core state", }, { .name = "disassemble", - .handler = &handle_armv4_5_disassemble_command, + .handler = handle_armv4_5_disassemble_command, .mode = COMMAND_EXEC, - .usage = "
[ ['thumb']]", + .usage = "address [count ['thumb']]", .help = "disassemble instructions ", }, {