command_handler: change 'args' to CMD_ARGV

This patch converts all instances of 'args' in COMMAND_HANDLER routines
to use CMD_ARGV macro.
This commit is contained in:
Zachary T Welch
2009-11-15 08:15:59 -08:00
parent 7bf1a86e47
commit 23402315ce
63 changed files with 521 additions and 521 deletions

View File

@@ -359,25 +359,25 @@ COMMAND_HANDLER(handle_etb_config_command)
return ERROR_COMMAND_SYNTAX_ERROR;
}
target = get_target(args[0]);
target = get_target(CMD_ARGV[0]);
if (!target)
{
LOG_ERROR("ETB: target '%s' not defined", args[0]);
LOG_ERROR("ETB: target '%s' not defined", CMD_ARGV[0]);
return ERROR_FAIL;
}
arm = target_to_arm(target);
if (!is_arm(arm))
{
command_print(cmd_ctx, "ETB: '%s' isn't an ARM", args[0]);
command_print(cmd_ctx, "ETB: '%s' isn't an ARM", CMD_ARGV[0]);
return ERROR_FAIL;
}
tap = jtag_tap_by_string(args[1]);
tap = jtag_tap_by_string(CMD_ARGV[1]);
if (tap == NULL)
{
command_print(cmd_ctx, "ETB: TAP %s does not exist", args[1]);
command_print(cmd_ctx, "ETB: TAP %s does not exist", CMD_ARGV[1]);
return ERROR_FAIL;
}