projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
429078e
)
staging: rtl8188eu: unnessesary braces for single statement block removed
author
Ivan Safonov
<insafonov@gmail.com>
Tue, 3 Nov 2015 09:53:43 +0000
(16:53 +0700)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/staging/rtl8188eu/hal/fw.c
b/drivers/staging/rtl8188eu/hal/fw.c
index b48f4447dc40f10614f3e8952cc04cf73f398799..04ae5836d12195574a7d91ff421cb5a324aec7e9 100644
(file)
--- a/
drivers/staging/rtl8188eu/hal/fw.c
+++ b/
drivers/staging/rtl8188eu/hal/fw.c
@@
-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)