summaryrefslogtreecommitdiff
path: root/src/jtag/driver.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 05:52:51 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:05 -0800
commitaf3f4a0bbefd796bd40602ae28f66dd373272e6a (patch)
tree0a7bbcb02c1b95055617b87dd5c67466e0ceb28d /src/jtag/driver.c
parente11c5a3b42a2a39c5b24c9a19ba03f7b16caf3d7 (diff)
downloadopenocd+libswd-af3f4a0bbefd796bd40602ae28f66dd373272e6a.tar.gz
openocd+libswd-af3f4a0bbefd796bd40602ae28f66dd373272e6a.tar.bz2
openocd+libswd-af3f4a0bbefd796bd40602ae28f66dd373272e6a.tar.xz
openocd+libswd-af3f4a0bbefd796bd40602ae28f66dd373272e6a.zip
statemove_command_t -> struct statemove_command
Remove misleading typedef from struct statemove_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 d50ae905..6f205734 100644
--- a/src/jtag/driver.c
+++ b/src/jtag/driver.c
@@ -377,7 +377,7 @@ int interface_jtag_add_tlr(void)
cmd->type = JTAG_STATEMOVE;
- cmd->cmd.statemove = cmd_queue_alloc(sizeof(statemove_command_t));
+ cmd->cmd.statemove = cmd_queue_alloc(sizeof(struct statemove_command));
cmd->cmd.statemove->end_state = state;
return ERROR_OK;