aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2011-12-14 07:30:33 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2011-12-20 16:57:58 +0000
commit115f5380ff6cf26d4d00a77f75e04be710e9110b (patch)
tree8bfdecf90dc0ee719dfefa88e55ab218de2949af /src
parenta30a4f0fc76b72936a6557e08d6b55b3a46eaafd (diff)
downloadriscv-openocd-115f5380ff6cf26d4d00a77f75e04be710e9110b.zip
riscv-openocd-115f5380ff6cf26d4d00a77f75e04be710e9110b.tar.gz
riscv-openocd-115f5380ff6cf26d4d00a77f75e04be710e9110b.tar.bz2
jtag: stop using sharp corner of JTAG API
this particular edge case of the JTAG API will no longer be supported. the in_value buffer must be provided by the caller when the callback needs the buffer. Change-Id: I552c72a64af6875f4aa4fa9b923194dcf3b57b64 Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com> Reviewed-on: http://openocd.zylin.com/265 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/target/xscale.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/target/xscale.c b/src/target/xscale.c
index 6fed032..93074ee 100644
--- a/src/target/xscale.c
+++ b/src/target/xscale.c
@@ -273,12 +273,16 @@ static int xscale_receive(struct target *target, uint32_t *buffer, int num_words
memset(&fields, 0, sizeof fields);
fields[0].num_bits = 3;
+ uint8_t tmp;
+ fields[0].in_value = &tmp;
fields[0].check_value = &field0_check_value;
fields[0].check_mask = &field0_check_mask;
fields[1].num_bits = 32;
fields[2].num_bits = 1;
+ uint8_t tmp2;
+ fields[2].in_value = &tmp2;
fields[2].check_value = &field2_check_value;
fields[2].check_mask = &field2_check_mask;