Staging: rtl8187se: fix braces {} are not necessary for single statement blocks in...
authorEbru Akagunduz <ebru.akagunduz@gmail.com>
Tue, 29 Oct 2013 21:05:23 +0000 (23:05 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Oct 2013 16:26:44 +0000 (09:26 -0700)
Fix checkpatch.pl issues with braces {} are not necessary
for single statement blocks in r8185b_init.c

Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/r8185b_init.c

index 680f859..707d5e0 100644 (file)
@@ -915,9 +915,8 @@ 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)