Commit 1e7e93ee authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: buf_ptr variable completely defined in a single line



It is simpler.

Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ec60e037
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
		usb_write32(adapt, offset, pu4BytePtr[i]);
	}

	buf_ptr += blk_cnt * blk_sz;
	buf_ptr = buffer + blk_cnt * blk_sz;
	for (i = 0; i < remain; i++, offset++) {
		usb_write8(adapt, offset, buf_ptr[i]);
	}