Browse Source

usbprog: fix unecessary and confusing assignment

clang found silly code that was trivially fixed.

Change-Id: Ied6c1b254c1823cd111140cbe0c8a03d2ede65fb
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Reviewed-on: http://openocd.zylin.com/186
Tested-by: jenkins
Reviewed-by: Peter Stuge <peter@stuge.se>
tags/v0.6.0-rc1
Øyvind Harboe 12 years ago
committed by Peter Stuge
parent
commit
74558296d1
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      src/jtag/drivers/usbprog.c

+ 0
- 2
src/jtag/drivers/usbprog.c View File

@@ -454,7 +454,6 @@ static void usbprog_jtag_write_and_read(struct usbprog_jtag *usbprog_jtag, char
tmp[0] = WRITE_AND_READ;
tmp[1] = (char)(send_bits >> 8); /* high */
tmp[2] = (char)(send_bits); /* low */
i = 0;

for (i = 0; i < loops; i++)
{
@@ -555,7 +554,6 @@ static void usbprog_jtag_write_tdi(struct usbprog_jtag *usbprog_jtag, char * buf
tmp[0] = WRITE_TDI;
tmp[1] = (char)(send_bits >> 8); /* high */
tmp[2] = (char)(send_bits); /* low */
i = 0;

for (i = 0; i < loops; i++)
{


Loading…
Cancel
Save