X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fjtag%2Fbitq.c;h=74555d2bc497d2c1486c104784c37f91571289b9;hb=78c6b922e21849ed8a2d3af4ca55c84c3d1ac185;hp=1c00228a122a1863c94c95dda7b83434ace48390;hpb=c07f0600ff3c77a00efaf4bdcd4dc3691f0421f6;p=openocd.git diff --git a/src/jtag/bitq.c b/src/jtag/bitq.c index 1c00228a12..74555d2bc4 100644 --- a/src/jtag/bitq.c +++ b/src/jtag/bitq.c @@ -29,7 +29,7 @@ struct bitq_interface* bitq_interface; /* low level bit queue interface */ /* state of input queue */ struct bitq_state { - jtag_command_t *cmd; /* command currently processed */ + struct jtag_command *cmd; /* command currently processed */ int field_idx; /* index of field currently being processed */ int bit_pos; /* position of bit curently being processed */ int status; /* processing status */ @@ -290,7 +290,7 @@ void bitq_scan(struct scan_command* cmd) int bitq_execute_queue(void) { - jtag_command_t* cmd = jtag_command_queue; /* currently processed command */ + struct jtag_command* cmd = jtag_command_queue; /* currently processed command */ bitq_in_state.cmd = jtag_command_queue; bitq_in_state.field_idx = 0;