sleep_command_t -> struct sleep_command

Remove misleading typedef from struct sleep_command.
This commit is contained in:
Zachary T Welch
2009-11-13 06:01:19 -08:00
parent cf2e402d71
commit 22b220ad7f
2 changed files with 4 additions and 5 deletions

View File

@@ -458,7 +458,7 @@ int interface_jtag_add_sleep(uint32_t us)
cmd->type = JTAG_SLEEP;
cmd->cmd.sleep = cmd_queue_alloc(sizeof(sleep_command_t));
cmd->cmd.sleep = cmd_queue_alloc(sizeof(struct sleep_command));
cmd->cmd.sleep->us = us;
return ERROR_OK;