runtest_command_t -> struct runtest_command

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

View File

@@ -411,7 +411,7 @@ int interface_jtag_add_runtest(int num_cycles, tap_state_t state)
cmd->type = JTAG_RUNTEST;
cmd->cmd.runtest = cmd_queue_alloc(sizeof(runtest_command_t));
cmd->cmd.runtest = cmd_queue_alloc(sizeof(struct runtest_command));
cmd->cmd.runtest->num_cycles = num_cycles;
cmd->cmd.runtest->end_state = state;