]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: rtl8188eu: initial value placed in the variable
authorIvan Safonov <insafonov@gmail.com>
Tue, 3 Nov 2015 09:46:08 +0000 (16:46 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
Line become shorter.
After the loop offset variable points to the location following insertion.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/fw.c

index 70825e05fae9b4934d06dd110770872bc2385bd5..99dd1f03afec5cba4361cbb28d3ad836be587b0d 100644 (file)
@@ -65,11 +65,10 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
        blk_cnt = size / blk_sz;
        remain = size % blk_sz;
 
-       offset = 0;
+       offset = FW_8192C_START_ADDRESS;
 
        for (i = 0; i < blk_cnt; i++) {
-               usb_write32(adapt, (FW_8192C_START_ADDRESS + offset),
-                               pu4BytePtr[i]);
+               usb_write32(adapt, offset, pu4BytePtr[i]);
                offset += blk_sz;
        }