usbprog: fix unecessary and confusing assignment
authorØyvind Harboe <oyvind.harboe@zylin.com>
Tue, 8 Nov 2011 20:41:35 +0000 (21:41 +0100)
committerPeter Stuge <peter@stuge.se>
Wed, 9 Nov 2011 01:58:57 +0000 (01:58 +0000)
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>
src/jtag/drivers/usbprog.c

index 3b8a613032f000ae0aa355b723a395638c78a986..225a3c59d7fadede5b8d68729ec64305412e1817 100644 (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++)
                {