stableclocks_command_t -> struct stableclocks_command

Remove misleading typedef from struct stableclocks_command.
This commit is contained in:
Zachary T Welch
2009-11-13 05:56:26 -08:00
parent 5f6d8ecf8c
commit 2fecae46f6
2 changed files with 4 additions and 5 deletions

View File

@@ -427,7 +427,7 @@ int interface_jtag_add_clocks(int num_cycles)
cmd->type = JTAG_STABLECLOCKS;
cmd->cmd.stableclocks = cmd_queue_alloc(sizeof(stableclocks_command_t));
cmd->cmd.stableclocks = cmd_queue_alloc(sizeof(struct stableclocks_command));
cmd->cmd.stableclocks->num_cycles = num_cycles;
return ERROR_OK;