aboutsummaryrefslogtreecommitdiff
path: root/src/target/adi_v5_swd.c
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-05-14 22:14:10 +0200
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-06-28 09:34:55 +0000
commit12e9f6292b391d475214704843504c5817bf783e (patch)
treeddbb551b8b728492d3e97c09ce379913151aa740 /src/target/adi_v5_swd.c
parentbaf998b9f8d17f4318b21336d5b57145fc4d44bc (diff)
Relax polling check if not in JTAG mode
Polling was disabled based on global variables jtag_trst and jtag_srst which were never touched in non-JTAG mode. Modify the check and remove the ugly workaround to avoid calls to a possibly uninitialized JTAG subsystem. Change-Id: I3b18c81e0fba7aaf35afe6f08c3fe8fa6f8443fd Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/2143 Tested-by: jenkins Reviewed-by: Paul Fertser <fercerpav@gmail.com>
Diffstat (limited to 'src/target/adi_v5_swd.c')
-rw-r--r--src/target/adi_v5_swd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/target/adi_v5_swd.c b/src/target/adi_v5_swd.c
index f08b0be0..f8d3650e 100644
--- a/src/target/adi_v5_swd.c
+++ b/src/target/adi_v5_swd.c
@@ -429,9 +429,6 @@ static int swd_init(struct command_context *ctx)
if (status == ERROR_OK)
LOG_INFO("SWD IDCODE %#8.8" PRIx32, idcode);
- /* this is a workaround to get polling working */
- jtag_add_reset(0, 0);
-
return status;
}