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:
6d9b0f0
)
staging: rtl8188eu: *(ptr + i) replaced by ptr[i] in _rtl88e_fw_block_write
author
Ivan Safonov
<insafonov@gmail.com>
Tue, 3 Nov 2015 09:43:53 +0000
(16:43 +0700)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000
(20:02 -0800)
It is better to read.
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
23aa6d3
..
af93697
100644
(file)
--- a/
drivers/staging/rtl8188eu/hal/fw.c
+++ b/
drivers/staging/rtl8188eu/hal/fw.c
@@
-68,7
+68,7
@@
static void _rtl88e_fw_block_write(struct adapter *adapt,
for (i = 0; i < blk_cnt; i++) {
offset = i * blk_sz;
usb_write32(adapt, (FW_8192C_START_ADDRESS + offset),
-
*(pu4BytePtr + i)
);
+
pu4BytePtr[i]
);
}
if (remain) {
@@
-76,7
+76,7
@@
static void _rtl88e_fw_block_write(struct adapter *adapt,
buf_ptr += offset;
for (i = 0; i < remain; i++) {
usb_write8(adapt, (FW_8192C_START_ADDRESS +
- offset + i),
*(buf_ptr + i)
);
+ offset + i),
buf_ptr[i]
);
}
}
}