mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 20:33:49 -04:00
staging: rtl8188eu: offset increment placed into for loop header
It makes the code little easier. 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
f464b3a08c
commit
ec60e037c7
@@ -67,14 +67,13 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
|
||||
|
||||
offset = FW_8192C_START_ADDRESS;
|
||||
|
||||
for (i = 0; i < blk_cnt; i++) {
|
||||
for (i = 0; i < blk_cnt; i++, offset += blk_sz) {
|
||||
usb_write32(adapt, offset, pu4BytePtr[i]);
|
||||
offset += blk_sz;
|
||||
}
|
||||
|
||||
buf_ptr += blk_cnt * blk_sz;
|
||||
for (i = 0; i < remain; i++) {
|
||||
usb_write8(adapt, offset + i, buf_ptr[i]);
|
||||
for (i = 0; i < remain; i++, offset++) {
|
||||
usb_write8(adapt, offset, buf_ptr[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user