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:
parent
6d9b0f00ec
commit
52863d83f3
1 changed files with 2 additions and 2 deletions
|
|
@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue