From 5fcd1d704cea078f6651e8e928ce7ff67b283882 Mon Sep 17 00:00:00 2001 From: drath Date: Thu, 17 Aug 2006 14:53:15 +0000 Subject: - 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 --- src/jtag/jtag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/jtag/jtag.c') 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)); -- cgit v1.2.3