summaryrefslogtreecommitdiff
path: root/src/jtag/usbprog.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 06:15:31 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:05 -0800
commit246068fd8985b293d7109058f83c57f6c22a4336 (patch)
treea22f23a1b1566f25c6dadc4dcfdaaae27ad4b55b /src/jtag/usbprog.c
parent1053c32d9ecc95ce946bbbf49cccfe800881f9aa (diff)
downloadopenocd_libswd-246068fd8985b293d7109058f83c57f6c22a4336.tar.gz
openocd_libswd-246068fd8985b293d7109058f83c57f6c22a4336.tar.bz2
openocd_libswd-246068fd8985b293d7109058f83c57f6c22a4336.tar.xz
openocd_libswd-246068fd8985b293d7109058f83c57f6c22a4336.zip
jtag_command_t -> struct jtag_command
Remove useless typedef from struct jtag_command.
Diffstat (limited to 'src/jtag/usbprog.c')
-rw-r--r--src/jtag/usbprog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/usbprog.c b/src/jtag/usbprog.c
index 9eda6e08..7abb0ca3 100644
--- a/src/jtag/usbprog.c
+++ b/src/jtag/usbprog.c
@@ -127,7 +127,7 @@ static int usbprog_register_commands(struct command_context_s *cmd_ctx)
static int usbprog_execute_queue(void)
{
- jtag_command_t *cmd = jtag_command_queue; /* currently processed command */
+ struct jtag_command *cmd = jtag_command_queue; /* currently processed command */
int scan_size;
enum scan_type type;
uint8_t *buffer;