summaryrefslogtreecommitdiff
path: root/src/xsvf
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-24 17:33:00 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-24 17:33:00 +0000
commit3fe23f94fb71d838eb86dd7bdeb9e67216b6e801 (patch)
treed3778a8183b30889d87dbef33c45a5527d00793e /src/xsvf
parent2f48cbf99cd1fff92dbd941af814f007194812cf (diff)
downloadopenocd+libswd-3fe23f94fb71d838eb86dd7bdeb9e67216b6e801.tar.gz
openocd+libswd-3fe23f94fb71d838eb86dd7bdeb9e67216b6e801.tar.bz2
openocd+libswd-3fe23f94fb71d838eb86dd7bdeb9e67216b6e801.tar.xz
openocd+libswd-3fe23f94fb71d838eb86dd7bdeb9e67216b6e801.zip
sharpend JTAG docs w.r.t. hw fifo implementations and retired jtag_cancel_queue() which is inheritely incompatible with a hw fifo concept.
git-svn-id: svn://svn.berlios.de/openocd/trunk@328 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/xsvf')
-rw-r--r--src/xsvf/xsvf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c
index f4c4dc4a..48ca0645 100644
--- a/src/xsvf/xsvf.c
+++ b/src/xsvf/xsvf.c
@@ -469,21 +469,18 @@ int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, char **arg
if (tdo_mismatch)
{
command_print(cmd_ctx, "TDO mismatch, aborting");
- jtag_cancel_queue();
return ERROR_OK;
}
if (unsupported)
{
command_print(cmd_ctx, "unsupported xsvf command encountered, aborting");
- jtag_cancel_queue();
return ERROR_OK;
}
if (do_abort)
{
command_print(cmd_ctx, "premature end detected, aborting");
- jtag_cancel_queue();
return ERROR_OK;
}