Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8107b147 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: unnecessary variable override removed



Variable value calculated in the previous loop.

Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 37d55790
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -73,11 +73,9 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
	}
	}


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