Commit f464b3a0 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman

staging: rtl8188eu: unnecessary branching removed

If the 'remain' is zero, the loop is not executed at all.
Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8107b147
...@@ -72,12 +72,10 @@ static void _rtl88e_fw_block_write(struct adapter *adapt, ...@@ -72,12 +72,10 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
offset += blk_sz; offset += blk_sz;
} }
if (remain) {
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, offset + i, buf_ptr[i]); usb_write8(adapt, offset + i, buf_ptr[i]);
} }
}
} }
static void _rtl88e_fill_dummy(u8 *pfwbuf, u32 *pfwlen) static void _rtl88e_fill_dummy(u8 *pfwbuf, u32 *pfwlen)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment