summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192u
diff options
context:
space:
mode:
authorRaphaël Beamonte2015-08-18 18:58:03 +0200
committerGreg Kroah-Hartman2015-09-13 03:24:32 +0200
commit28071d3400d88325c20e583a96ee5be277a6fdf8 (patch)
tree6c1194d3c88d5a880ec479bb6654624402769bc4 /drivers/staging/rtl8192u
parentstaging: rtl8192u: r8192U_core: fix switch and case indent code style error (diff)
downloadkernel-qcow2-linux-28071d3400d88325c20e583a96ee5be277a6fdf8.tar.gz
kernel-qcow2-linux-28071d3400d88325c20e583a96ee5be277a6fdf8.tar.xz
kernel-qcow2-linux-28071d3400d88325c20e583a96ee5be277a6fdf8.zip
staging: rtl8192u: r8192U_core: fix space before close parenthesis code style error
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>
Diffstat (limited to 'drivers/staging/rtl8192u')
-rw-r--r--drivers/staging/rtl8192u/r8192U_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c
index 915493dab6ad..6137a048c4be 100644
--- a/drivers/staging/rtl8192u/r8192U_core.c
+++ b/drivers/staging/rtl8192u/r8192U_core.c
@@ -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;