Commit 6e84aa6c authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman

staging: rtl8188eu: unnessesary braces for single statement block removed

checkpatch fix:
WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 429078e1
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment