]> git.sur5r.net Git - openocd/commitdiff
jtag: remove unecessary usage of jtag_get_end_state().
authorØyvind Harboe <oyvind.harboe@zylin.com>
Thu, 18 Mar 2010 17:34:34 +0000 (18:34 +0100)
committerØyvind Harboe <oyvind.harboe@zylin.com>
Fri, 19 Mar 2010 07:31:44 +0000 (08:31 +0100)
By code inspection.

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
src/target/etb.c

index 99710700ec4eaabbe924f3a0bb7e2bd3541fb25a..96a6e0ded102885bba6daf4d07e7afbaac7cee21 100644 (file)
@@ -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, &field, jtag_get_end_state());
+               jtag_add_ir_scan(tap, &field, TAP_IDLE);
 
                free(field.out_value);
        }
@@ -82,7 +82,7 @@ static int etb_scann(struct etb *etb, uint32_t new_scan_chain)
 
                /* select INTEST instruction */
                etb_set_instr(etb, 0x2);
-               jtag_add_dr_scan(etb->tap, 1, &field, jtag_get_end_state());
+               jtag_add_dr_scan(etb->tap, 1, &field, TAP_IDLE);
 
                etb->cur_scan_chain = new_scan_chain;