aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8187se/ieee80211/dot11d.c
diff options
context:
space:
mode:
authorRashika Kheria <rashika.kheria@gmail.com>2013-11-02 22:47:45 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-10 08:44:21 -0800
commit3e3f837c659efc8fbb88e60cfda79b6ccfd2ac13 (patch)
tree09c75420a9a66549b27d909366a4a151bfa18f46 /drivers/staging/rtl8187se/ieee80211/dot11d.c
parentStaging: rtl8187se: Fix printk() should include KERN_ facility level (diff)
downloadlinux-dev-3e3f837c659efc8fbb88e60cfda79b6ccfd2ac13.tar.xz
linux-dev-3e3f837c659efc8fbb88e60cfda79b6ccfd2ac13.zip
Staging: rtl8187se: Fix space prohibited before semicolon in dot11d.c
This patch fixes the following checkpatch.pl issues in ieee80211/dot11d.c- WARNING: space prohibited before semicolon Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8187se/ieee80211/dot11d.c')
-rw-r--r--drivers/staging/rtl8187se/ieee80211/dot11d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8187se/ieee80211/dot11d.c b/drivers/staging/rtl8187se/ieee80211/dot11d.c
index c8874b80486a..2f5d367cd1c4 100644
--- a/drivers/staging/rtl8187se/ieee80211/dot11d.c
+++ b/drivers/staging/rtl8187se/ieee80211/dot11d.c
@@ -106,7 +106,7 @@ Dot11d_UpdateCountryIe(
return;
}
- for (j = 0 ; j < pTriple->NumChnls; j++) {
+ for (j = 0; j < pTriple->NumChnls; j++) {
pDot11dInfo->channel_map[pTriple->FirstChnl + j] = 1;
pDot11dInfo->MaxTxPwrDbmList[pTriple->FirstChnl + j] = pTriple->MaxTxPowerInDbm;
MaxChnlNum = pTriple->FirstChnl + j;