Commit 52863d83 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman

staging: rtl8188eu: *(ptr + i) replaced by ptr[i] in _rtl88e_fw_block_write

It is better to read.
Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6d9b0f00
...@@ -68,7 +68,7 @@ static void _rtl88e_fw_block_write(struct adapter *adapt, ...@@ -68,7 +68,7 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
for (i = 0; i < blk_cnt; i++) { for (i = 0; i < blk_cnt; i++) {
offset = i * blk_sz; offset = i * blk_sz;
usb_write32(adapt, (FW_8192C_START_ADDRESS + offset), usb_write32(adapt, (FW_8192C_START_ADDRESS + offset),
*(pu4BytePtr + i)); pu4BytePtr[i]);
} }
if (remain) { if (remain) {
...@@ -76,7 +76,7 @@ static void _rtl88e_fw_block_write(struct adapter *adapt, ...@@ -76,7 +76,7 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
buf_ptr += offset; buf_ptr += offset;
for (i = 0; i < remain; i++) { for (i = 0; i < remain; i++) {
usb_write8(adapt, (FW_8192C_START_ADDRESS + usb_write8(adapt, (FW_8192C_START_ADDRESS +
offset + i), *(buf_ptr + i)); offset + i), buf_ptr[i]);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment