From: Ebru Akagunduz Date: Tue, 29 Oct 2013 21:05:23 +0000 (+0200) Subject: Staging: rtl8187se: fix braces {} are not necessary for single statement blocks in... X-Git-Tag: v3.13-rc1~170^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51f79f1e30da4bee9f2edac8a81492bf4fa9228a;p=platform%2Fkernel%2Flinux-stable.git 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: Ebru Akagunduz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8187se/r8185b_init.c b/drivers/staging/rtl8187se/r8185b_init.c index 680f859..707d5e0 100644 --- a/drivers/staging/rtl8187se/r8185b_init.c +++ b/drivers/staging/rtl8187se/r8185b_init.c @@ -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)