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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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]);
		}
	}
}