From: Drasko DRASKOVIC Date: Tue, 5 Jul 2011 15:37:05 +0000 (+0200) Subject: mips32: Removed Unnecessary JTAG Queue Flush X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e1466df54d8ddd6800f8df2f9e0d2f1dd646cb20;p=fw%2Fopenocd mips32: Removed Unnecessary JTAG Queue Flush jtag_execute_queue() is executed as a part of mips_ejtag_drscan_32(). No need for this to be done before - removed for optimisation. --- diff --git a/src/target/mips32_pracc.c b/src/target/mips32_pracc.c index af60d3216..cb8665c3a 100644 --- a/src/target/mips32_pracc.c +++ b/src/target/mips32_pracc.c @@ -115,18 +115,12 @@ static int wait_for_pracc_rw(struct mips_ejtag *ejtag_info, uint32_t *ctrl) uint32_t ejtag_ctrl; long long then = timeval_ms(); int timeout; + int retval; /* wait for the PrAcc to become "1" */ mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL); ejtag_ctrl = ejtag_info->ejtag_ctrl; - int retval; - if ((retval = jtag_execute_queue()) != ERROR_OK) - { - LOG_ERROR("fastdata load failed"); - return retval; - } - while (1) { retval = mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);