mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: rtl8188eu: unnessesary braces for single statement block removed
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>
This commit is contained in:
parent
429078e1f1
commit
6e84aa6c82
1 changed files with 2 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue