arm_adi,armv7[am]: use COMMAND_HELPER for helpers

Rewrites the dap_* command helpers to use the COMMAND_HELPER paradigm.
Uses CALL_COMMAND_HELPER to hide inherited calling conventions.
This commit is contained in:
Zachary T Welch
2009-11-10 05:32:04 -08:00
parent 63a26b421b
commit d02fee197f
4 changed files with 18 additions and 23 deletions

View File

@@ -1364,8 +1364,7 @@ int dap_info_command(struct command_context_s *cmd_ctx, swjdp_common_t *swjdp, i
return ERROR_OK;
}
int dap_baseaddr_command(struct command_context_s *cmd_ctx,
swjdp_common_t *swjdp, char **args, int argc)
DAP_COMMAND_HANDLER(dap_baseaddr_command)
{
uint32_t apsel, apselsave, baseaddr;
int retval;
@@ -1395,8 +1394,7 @@ int dap_baseaddr_command(struct command_context_s *cmd_ctx,
return retval;
}
int dap_memaccess_command(struct command_context_s *cmd_ctx,
swjdp_common_t *swjdp, char **args, int argc)
DAP_COMMAND_HANDLER(dap_memaccess_command)
{
uint32_t memaccess_tck;
@@ -1418,8 +1416,7 @@ int dap_memaccess_command(struct command_context_s *cmd_ctx,
return ERROR_OK;
}
int dap_apsel_command(struct command_context_s *cmd_ctx,
swjdp_common_t *swjdp, char **args, int argc)
DAP_COMMAND_HANDLER(dap_apsel_command)
{
uint32_t apsel, apid;
int retval;
@@ -1444,8 +1441,7 @@ int dap_apsel_command(struct command_context_s *cmd_ctx,
return retval;
}
int dap_apid_command(struct command_context_s *cmd_ctx,
swjdp_common_t *swjdp, char **args, int argc)
DAP_COMMAND_HANDLER(dap_apid_command)
{
uint32_t apsel, apselsave, apid;
int retval;