Staging: rtl8187se: Fix line over 80 characters in dot11d.c
authorRashika Kheria <rashika.kheria@gmail.com>
Sat, 2 Nov 2013 17:21:26 +0000 (22:51 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2013 16:44:21 +0000 (08:44 -0800)
This patch fixes the following checkpatch.pl issues in
ieee80211/dot11d.c-
WARNING: line over 80 characters

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/ieee80211/dot11d.c

index eb161f28a18608db9e35340ffd1df8f8f1d220f3..0d914f25894f528b3c80b30a49a8d08f090a727f 100644 (file)
@@ -71,6 +71,7 @@ Dot11d_UpdateCountryIe(
 {
        PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev);
        u8 i, j, NumTriples, MaxChnlNum;
+       u8 index, MaxTxPowerInDbm;
        PCHNL_TXPOWER_TRIPLE pTriple;
 
        if ((CoutryIeLen - 3)%3 != 0) {
@@ -95,7 +96,8 @@ Dot11d_UpdateCountryIe(
                        Dot11d_Reset(dev);
                        return;
                }
-               if (MAX_CHANNEL_NUMBER < (pTriple->FirstChnl + pTriple->NumChnls)) {
+               if (MAX_CHANNEL_NUMBER <
+                   (pTriple->FirstChnl + pTriple->NumChnls)) {
                        /*
                         * It is not a valid set of channel id,
                         * so stop processing
@@ -107,8 +109,10 @@ Dot11d_UpdateCountryIe(
                }
 
                for (j = 0; j < pTriple->NumChnls; j++) {
-                       pDot11dInfo->channel_map[pTriple->FirstChnl + j] = 1;
-                       pDot11dInfo->MaxTxPwrDbmList[pTriple->FirstChnl + j] = pTriple->MaxTxPowerInDbm;
+                       index = pTriple->FirstChnl + j;
+                       pDot11dInfo->channel_map[index] = 1;
+                       MaxTxPowerInDbm = pTriple->MaxTxPowerInDbm;
+                       pDot11dInfo->MaxTxPwrDbmList[index] = MaxTxPowerInDbm;
                        MaxChnlNum = pTriple->FirstChnl + j;
                }