summaryrefslogtreecommitdiff
path: root/src/target/etb.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-03-04 14:38:19 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-03-08 08:12:25 +0100
commit57d7743639d5092770d79f7c4b12ae694c482750 (patch)
tree7b022a9b5df72bb30d05b6594574819c9c6e6f6d /src/target/etb.c
parente018c7c1d29e8dabb9b4a90bb9eb3574eb1668bb (diff)
downloadopenocd+libswd-57d7743639d5092770d79f7c4b12ae694c482750.tar.gz
openocd+libswd-57d7743639d5092770d79f7c4b12ae694c482750.tar.bz2
openocd+libswd-57d7743639d5092770d79f7c4b12ae694c482750.tar.xz
openocd+libswd-57d7743639d5092770d79f7c4b12ae694c482750.zip
jtag: jtag_add_ir_scan() now takes a single field
In the code a single field was all that was ever used. Makes jtag_add_ir_scan() simpler and leaves more complicated stuff to jtag_add_plain_ir_scan(). Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/target/etb.c')
-rw-r--r--src/target/etb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/etb.c b/src/target/etb.c
index 1f73ff5e..2c4e3ebe 100644
--- a/src/target/etb.c
+++ b/src/target/etb.c
@@ -60,7 +60,7 @@ static int etb_set_instr(struct etb *etb, uint32_t new_instr)
field.in_value = NULL;
- jtag_add_ir_scan(tap, 1, &field, jtag_get_end_state());
+ jtag_add_ir_scan(tap, &field, jtag_get_end_state());
free(field.out_value);
}