staging: rtl8188eu: unnessesary braces for single statement block removed
authorIvan Safonov <insafonov@gmail.com>
Tue, 3 Nov 2015 09:53:43 +0000 (16:53 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
checkpatch fix:
WARNING: braces {} are not necessary for single statement blocks

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

index b48f4447dc40f10614f3e8952cc04cf73f398799..04ae5836d12195574a7d91ff421cb5a324aec7e9 100644 (file)
@@ -67,14 +67,12 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
 
        offset = FW_8192C_START_ADDRESS;
 
-       for (i = 0; i < blk_cnt; i++, offset += blk_sz) {
+       for (i = 0; i < blk_cnt; i++, offset += blk_sz)
                usb_write32(adapt, offset, pu4BytePtr[i]);
-       }
 
        buf_ptr = buffer + blk_cnt * blk_sz;
-       for (i = 0; i < remain; i++, offset++) {
+       for (i = 0; i < remain; i++, offset++)
                usb_write8(adapt, offset, buf_ptr[i]);
-       }
 }
 
 static void _rtl88e_fill_dummy(u8 *pfwbuf, u32 *pfwlen)
This page took 0.025501 seconds and 5 git commands to generate.