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

Commit 51f79f1e authored by Ebru Akagunduz's avatar Ebru Akagunduz Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8187se: fix braces {} are not necessary for single statement blocks in r8185b_init.c



Fix checkpatch.pl issues with braces {} are not necessary
for single statement blocks in r8185b_init.c

Signed-off-by: default avatarEbru Akagunduz <ebru.akagunduz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 52a71d5f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -915,10 +915,9 @@ static void ActUpdateChannelAccessSetting(struct net_device *dev,
	 */
	write_nic_byte(dev, AckTimeOutReg, 0x5B);

	for (eACI = 0; eACI < AC_MAX; eACI++) {
	for (eACI = 0; eACI < AC_MAX; eACI++)
		write_nic_byte(dev, ACM_CONTROL, 0);
}
}

static void ActSetWirelessMode8185(struct net_device *dev, u8 btWirelessMode)
{