summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8188eu
diff options
context:
space:
mode:
authorIvan Safonov <insafonov@gmail.com>2015-11-03 09:46:53 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-11-16 04:02:47 (GMT)
commit37d5579095b380f3328a5106354c0999eeca60f2 (patch)
tree93e97119517d496ce688d795a4ebb103b4a5cf73 /drivers/staging/rtl8188eu
parent1c48deffc7fa48a341ccc4bcef41f8ce2eab645f (diff)
downloadlinux-37d5579095b380f3328a5106354c0999eeca60f2.tar.xz
staging: rtl8188eu: offset variable replaced by its value
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>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r--drivers/staging/rtl8188eu/hal/fw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/hal/fw.c b/drivers/staging/rtl8188eu/hal/fw.c
index 99dd1f0..9673686 100644
--- 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]);