forked from auracaster/openocd
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>
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ static int virtex2_set_instr(struct jtag_tap *tap, uint32_t new_instr)
|
||||
buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
|
||||
field.in_value = NULL;
|
||||
|
||||
jtag_add_ir_scan(tap, 1, &field, jtag_set_end_state(TAP_IDLE));
|
||||
jtag_add_ir_scan(tap, &field, jtag_set_end_state(TAP_IDLE));
|
||||
|
||||
free(field.out_value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user