summaryrefslogtreecommitdiff
path: root/src/jtag/jtag.c
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-17 14:53:15 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-17 14:53:15 +0000
commit5fcd1d704cea078f6651e8e928ce7ff67b283882 (patch)
tree2adc2d71513793359bef126d05448f0e22a259be /src/jtag/jtag.c
parent9a830747b2324cc1f319c32399e76f759bd5f0e6 (diff)
downloadopenocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.gz
openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.bz2
openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.xz
openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.zip
- renamed jtag_interface_t.support_statemove to jtag_interface_t.support_pathmove (it is used to indicate jtag_add_pathmove support)
- fixed small bug in str7x.c that printed an address instead of the target number in an error message - added support for Olimex ARM-USB-OCD. The new ft2232 layout is called "olimex-jtag" git-svn-id: svn://svn.berlios.de/openocd/trunk@87 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/jtag.c')
-rw-r--r--src/jtag/jtag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/jtag.c b/src/jtag/jtag.c
index a60aacd0..95818f07 100644
--- a/src/jtag/jtag.c
+++ b/src/jtag/jtag.c
@@ -694,7 +694,7 @@ int jtag_add_pathmove(int num_states, enum tap_state *path)
return ERROR_JTAG_NOT_IMPLEMENTED;
}
- if (jtag->support_statemove)
+ if (jtag->support_pathmove)
{
/* allocate memory for a new list member */
*last_cmd = cmd_queue_alloc(sizeof(jtag_command_t));