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

@@ -30,18 +30,18 @@ COMMAND_HANDLER(handle_etm_dummy_config_command)
struct target *target;
struct arm *arm;
target = get_target(args[0]);
target = get_target(CMD_ARGV[0]);
if (!target)
{
LOG_ERROR("target '%s' not defined", args[0]);
LOG_ERROR("target '%s' not defined", CMD_ARGV[0]);
return ERROR_FAIL;
}
arm = target_to_arm(target);
if (!is_arm(arm))
{
command_print(cmd_ctx, "target '%s' isn't an ARM", args[0]);
command_print(cmd_ctx, "target '%s' isn't an ARM", CMD_ARGV[0]);
return ERROR_FAIL;
}