staging: rtl8192u: r8192U_core: fix space before close parenthesis code style error
authorRaphaël Beamonte <raphael.beamonte@gmail.com>
Tue, 18 Aug 2015 16:58:03 +0000 (12:58 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:24:32 +0000 (18:24 -0700)
A space existed before the close parenthesis of an if statement. This patch
removes it to follow the kernel code style.

Signed-off-by: Raphaël Beamonte <raphael.beamonte@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r8192U_core.c

index 915493dab6ade6e49417dfe0568c3b6bc727d73e..6137a048c4be295d131c37b3534c33e84bca6158 100644 (file)
@@ -3221,7 +3221,7 @@ static void rtl819x_watchdog_wqcallback(struct work_struct *work)
        //to get busy traffic condition
        if (ieee->state == IEEE80211_LINKED) {
                if (ieee->LinkDetectInfo.NumRxOkInPeriod > 666 ||
-                   ieee->LinkDetectInfo.NumTxOkInPeriod > 666 ) {
+                   ieee->LinkDetectInfo.NumTxOkInPeriod > 666) {
                        bBusyTraffic = true;
                }
                ieee->LinkDetectInfo.NumRxOkInPeriod = 0;
This page took 0.027091 seconds and 5 git commands to generate.