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:
988c514
)
staging: rtl8188eu: pu4BytePtr renamed to dword_buffer
author
Ivan Safonov
<insafonov@gmail.com>
Tue, 3 Nov 2015 09:54:28 +0000
(16:54 +0700)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000
(20:02 -0800)
This name is better suited for this 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
f8f212f
..
059e7ee
100644
(file)
--- a/
drivers/staging/rtl8188eu/hal/fw.c
+++ b/
drivers/staging/rtl8188eu/hal/fw.c
@@
-59,7
+59,7
@@
static void _rtl88e_fw_block_write(struct adapter *adapt,
{
u32 blk_sz = sizeof(u32);
const u8 *byte_buffer;
- const u32 *
pu4BytePt
r = (u32 *)buffer;
+ const u32 *
dword_buffe
r = (u32 *)buffer;
u32 i, offset, blk_cnt, remain;
blk_cnt = size / blk_sz;
@@
-68,7
+68,7
@@
static void _rtl88e_fw_block_write(struct adapter *adapt,
offset = FW_8192C_START_ADDRESS;
for (i = 0; i < blk_cnt; i++, offset += blk_sz)
- usb_write32(adapt, offset,
pu4BytePt
r[i]);
+ usb_write32(adapt, offset,
dword_buffe
r[i]);
byte_buffer = buffer + blk_cnt * blk_sz;
for (i = 0; i < remain; i++, offset++)