summaryrefslogtreecommitdiff
path: root/src/target/arm11_dbgtap.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-04 12:12:38 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-04 12:12:38 +0000
commit040e6cef41d77f6692f2f5e9c5849e6d8fbeeefd (patch)
tree509edb0af8900ec032dd173a4593bccd4f552bbc /src/target/arm11_dbgtap.c
parentf499341558dce8a41086f5439ca0458f4ea1fbfd (diff)
downloadopenocd_libswd-040e6cef41d77f6692f2f5e9c5849e6d8fbeeefd.tar.gz
openocd_libswd-040e6cef41d77f6692f2f5e9c5849e6d8fbeeefd.tar.bz2
openocd_libswd-040e6cef41d77f6692f2f5e9c5849e6d8fbeeefd.tar.xz
openocd_libswd-040e6cef41d77f6692f2f5e9c5849e6d8fbeeefd.zip
no longer use jtag_add_xxx() to set end state to TAP_DRPAUSE
git-svn-id: svn://svn.berlios.de/openocd/trunk@2045 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm11_dbgtap.c')
-rw-r--r--src/target/arm11_dbgtap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm11_dbgtap.c b/src/target/arm11_dbgtap.c
index 025c69e8..06b002de 100644
--- a/src/target/arm11_dbgtap.c
+++ b/src/target/arm11_dbgtap.c
@@ -526,7 +526,7 @@ int arm11_run_instr_data_to_core_noack(arm11_common_t * arm11, u32 opcode, u32 *
if (count)
{
- jtag_add_dr_scan(asizeof(chain5_fields), chain5_fields, TAP_DRPAUSE);
+ jtag_add_dr_scan(asizeof(chain5_fields), chain5_fields, jtag_add_end_state(TAP_DRPAUSE));
jtag_add_pathmove(asizeof(arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay),
arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay);
}