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:
Øyvind Harboe
2010-03-04 14:38:19 +01:00
parent e018c7c1d2
commit 57d7743639
15 changed files with 46 additions and 37 deletions
+1 -1
View File
@@ -704,7 +704,7 @@ COMMAND_HANDLER(handle_xsvf_command)
if (tap == NULL)
jtag_add_plain_ir_scan(1, &field, my_end_state);
else
jtag_add_ir_scan(tap, 1, &field, my_end_state);
jtag_add_ir_scan(tap, &field, my_end_state);
if (xruntest)
{