mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 05:31:17 -04:00
staging: rtl8188eu: *(ptr + i) replaced by ptr[i] in _rtl88e_fw_block_write
It is better to read. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6d9b0f00ec
commit
52863d83f3
@@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user