Simplify jtag_execute_queue_noclear:

- Replace jtag_error logic with equivalent call to jtag_set_error.
- Remove superfluous comment and temporary return variable.


git-svn-id: svn://svn.berlios.de/openocd/trunk@2116 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
zwelch 2009-06-08 10:55:54 +00:00
parent 791701165c
commit f418fcbff0
1 changed files with 1 additions and 10 deletions

View File

@ -903,17 +903,8 @@ int default_interface_jtag_execute_queue(void)
void jtag_execute_queue_noclear(void)
{
/* each flush can take as much as 1-2ms on high bandwidth low latency interfaces.
* E.g. a JTAG over TCP/IP or USB....
*/
jtag_flush_queue_count++;
int retval=interface_jtag_execute_queue();
/* we keep the first error */
if ((jtag_error==ERROR_OK)&&(retval!=ERROR_OK))
{
jtag_error=retval;
}
jtag_set_error(interface_jtag_execute_queue());
}
int jtag_get_flush_queue_count(void)