Skip to content

Commit

Permalink
Staging: rtl8187se: fix braces {} are not necessary for single statem…
Browse files Browse the repository at this point in the history
…ent 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: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ebru Akagunduz authored and Greg Kroah-Hartman committed Oct 30, 2013
1 parent 52a71d5 commit 51f79f1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/staging/rtl8187se/r8185b_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 51f79f1

Please sign in to comment.