summaryrefslogtreecommitdiff
path: root/src/target/arm7_9_common.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-04 12:06:31 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-04 12:06:31 +0000
commitf499341558dce8a41086f5439ca0458f4ea1fbfd (patch)
treeff12d32975ed89d00cd4e12fe6cbf30eefe0f803 /src/target/arm7_9_common.c
parentf86f2ab3f8e51129ccadcba4920be0f8bf47637e (diff)
downloadopenocd+libswd-f499341558dce8a41086f5439ca0458f4ea1fbfd.tar.gz
openocd+libswd-f499341558dce8a41086f5439ca0458f4ea1fbfd.tar.bz2
openocd+libswd-f499341558dce8a41086f5439ca0458f4ea1fbfd.tar.xz
openocd+libswd-f499341558dce8a41086f5439ca0458f4ea1fbfd.zip
no longer use jtag_add_xxx() to set end state to TAP_IDLE. Same must be done for TAP_DRPAUSE
git-svn-id: svn://svn.berlios.de/openocd/trunk@2044 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm7_9_common.c')
-rw-r--r--src/target/arm7_9_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm7_9_common.c b/src/target/arm7_9_common.c
index 9751c213..7e9a3185 100644
--- a/src/target/arm7_9_common.c
+++ b/src/target/arm7_9_common.c
@@ -1731,7 +1731,7 @@ int arm7_9_restart_core(struct target_s *target)
}
arm_jtag_set_instr(jtag_info, 0x4, NULL);
- jtag_add_runtest(1, TAP_IDLE);
+ jtag_add_runtest(1, jtag_add_end_state(TAP_IDLE));
return jtag_execute_queue();
}