aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/driver.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 05:54:16 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:05 -0800
commitc07f0600ff3c77a00efaf4bdcd4dc3691f0421f6 (patch)
treee91376930bc5a327f1f794fd0ffa6aa490a2eaca /src/jtag/driver.c
parentaf3f4a0bbefd796bd40602ae28f66dd373272e6a (diff)
pathmove_command_t -> struct pathmove_command
Remove misleading typedef from struct pathmove_command.
Diffstat (limited to 'src/jtag/driver.c')
-rw-r--r--src/jtag/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/driver.c b/src/jtag/driver.c
index 6f205734..83ac56c4 100644
--- a/src/jtag/driver.c
+++ b/src/jtag/driver.c
@@ -392,7 +392,7 @@ int interface_jtag_add_pathmove(int num_states, const tap_state_t *path)
cmd->type = JTAG_PATHMOVE;
- cmd->cmd.pathmove = cmd_queue_alloc(sizeof(pathmove_command_t));
+ cmd->cmd.pathmove = cmd_queue_alloc(sizeof(struct pathmove_command));
cmd->cmd.pathmove->num_states = num_states;
cmd->cmd.pathmove->path = cmd_queue_alloc(sizeof(tap_state_t) * num_states);