mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
staging: rtl8188eu: add spaces around '+' in fw.c
Add spaces around '+' in fw.c to follow kernel coding style. Reported by checkpatch. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c34344c274
commit
44b676a635
@ -98,9 +98,9 @@ static void rtl88e_firmware_selfreset(struct adapter *adapt)
|
||||
{
|
||||
u8 u1b_tmp;
|
||||
|
||||
u1b_tmp = usb_read8(adapt, REG_SYS_FUNC_EN+1);
|
||||
usb_write8(adapt, REG_SYS_FUNC_EN+1, (u1b_tmp & (~BIT(2))));
|
||||
usb_write8(adapt, REG_SYS_FUNC_EN+1, (u1b_tmp | BIT(2)));
|
||||
u1b_tmp = usb_read8(adapt, REG_SYS_FUNC_EN + 1);
|
||||
usb_write8(adapt, REG_SYS_FUNC_EN + 1, (u1b_tmp & (~BIT(2))));
|
||||
usb_write8(adapt, REG_SYS_FUNC_EN + 1, (u1b_tmp | BIT(2)));
|
||||
}
|
||||
|
||||
static int _rtl88e_fw_free_to_go(struct adapter *adapt)
|
||||
|
Loading…
Reference in New Issue
Block a user