summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphaël Beamonte <raphael.beamonte@gmail.com>2015-08-18 12:58:03 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-12 18:24:32 -0700
commit28071d3400d88325c20e583a96ee5be277a6fdf8 (patch)
tree6c1194d3c88d5a880ec479bb6654624402769bc4
parenta7be027984f61119c027f42ee3003a8b30f539ea (diff)
downloadlinux-stable-28071d3400d88325c20e583a96ee5be277a6fdf8.tar.gz
linux-stable-28071d3400d88325c20e583a96ee5be277a6fdf8.tar.bz2
linux-stable-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>
-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;