OSDN Git Service
(root)
/
uclinux-h8
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c48def
)
staging: rtl8188eu: offset variable replaced by its value
author
Ivan Safonov
<insafonov@gmail.com>
Tue, 3 Nov 2015 09:46:53 +0000
(16:46 +0700)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000
(20:02 -0800)
It is now possible to get rid of re-initializing the offset variable.
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
99dd1f0
..
9673686
100644
(file)
--- a/
drivers/staging/rtl8188eu/hal/fw.c
+++ b/
drivers/staging/rtl8188eu/hal/fw.c
@@
-74,7
+74,7
@@
static void _rtl88e_fw_block_write(struct adapter *adapt,
if (remain) {
offset = blk_cnt * blk_sz;
- buf_ptr +=
offset
;
+ buf_ptr +=
blk_cnt * blk_sz
;
for (i = 0; i < remain; i++) {
usb_write8(adapt, (FW_8192C_START_ADDRESS +
offset + i), buf_ptr[i]);