From: Zach W. <zw...@us...> - 2009-12-03 01:20:07
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 4c43afce852b1ed6bff544bed6d28cce3d366886 (commit) from a79b76d893ca5c3b8144b2098c88f516052d72fe (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4c43afce852b1ed6bff544bed6d28cce3d366886 Author: Zachary T Welch <zw...@su...> Date: Wed Dec 2 16:12:10 2009 -0800 fix 'target init' command registration The command handler registration was put at the top level, rather than as a subcommand. Move it to where it belongs. diff --git a/src/target/target.c b/src/target/target.c index 4013442..9a605f3 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -4591,6 +4591,12 @@ static int jim_target_count(Jim_Interp *interp, int argc, Jim_Obj *const *argv) static const struct command_registration target_subcommand_handlers[] = { { + .name = "init", + .mode = COMMAND_CONFIG, + .handler = &handle_target_init_command, + .help = "initialize targets", + }, + { .name = "create", .mode = COMMAND_ANY, .jim_handler = &jim_target_create, @@ -4804,12 +4810,6 @@ COMMAND_HANDLER(handle_fast_load_command) static const struct command_registration target_command_handlers[] = { { - .name = "init", - .mode = COMMAND_CONFIG, - .handler = &handle_target_init_command, - .help = "initialize targets", - }, - { .name = "targets", .handler = &handle_targets_command, .mode = COMMAND_ANY, ----------------------------------------------------------------------- Summary of changes: src/target/target.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- Main OpenOCD repository |