Corrected coding style issues:
ERROR: space prohibited before that close parenthesis ')'
ERROR: space prohibited after that open parenthesis '('

Signed-off-by: John Whitmore <johnfwhitm...@gmail.com>
---
 drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c 
b/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
index 275fadb6f365..cde149af4937 100644
--- a/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
@@ -122,7 +122,7 @@ void HTUpdateDefaultSetting(struct ieee80211_device *ieee)
  *  return:  none
  *  notice:  Driver should not print out this message by default.
  * 
*****************************************************************************************************************/
-void HTDebugHTCapability(u8 *CapIE, u8 *TitleString )
+void HTDebugHTCapability(u8 *CapIE, u8 *TitleString)
 {
 
        static u8       EWC11NHTCap[] = {0x00, 0x90, 0x4c, 0x33};       // For 
11n EWC definition, 2007.07.17, by Emily
@@ -135,7 +135,7 @@ void HTDebugHTCapability(u8 *CapIE, u8 *TitleString )
        } else {
                pCapELE = (PHT_CAPABILITY_ELE)(&CapIE[0]);
        }
-       IEEE80211_DEBUG(IEEE80211_DL_HT, "<Log HT Capability>. Called by %s\n", 
TitleString );
+       IEEE80211_DEBUG(IEEE80211_DL_HT, "<Log HT Capability>. Called by %s\n", 
TitleString);
 
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tSupported Channel Width = %s\n", 
(pCapELE->ChlWidth)?"20MHz" : "20/40MHz");
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tSupport Short GI for 20M = %s\n", 
(pCapELE->ShortGI20Mhz)?"YES" : "NO");
@@ -306,17 +306,17 @@ u16  TxCountToDataRate(struct ieee80211_device *ieee, u8 
nDataRate)
                        isShortGI = 0;
 
                      // nDataRate = nDataRate - 12;
-               } else if (nDataRate >= 0x20  && nDataRate <= 0x2f ) {  //(27, 
44)
+               } else if (nDataRate >= 0x20  && nDataRate <= 0x2f) {  //(27, 
44)
                        is40MHz = 1;
                        isShortGI = 0;
 
                        //nDataRate = nDataRate - 28;
-               } else if (nDataRate >= 0x30  && nDataRate <= 0x3f ) {  //(43, 
60)
+               } else if (nDataRate >= 0x30  && nDataRate <= 0x3f) {  //(43, 
60)
                        is40MHz = 0;
                        isShortGI = 1;
 
                        //nDataRate = nDataRate - 44;
-               } else if (nDataRate >= 0x40  && nDataRate <= 0x4f ) {  //(59, 
76)
+               } else if (nDataRate >= 0x40  && nDataRate <= 0x4f) {  //(59, 
76)
                        is40MHz = 1;
                        isShortGI = 1;
 
@@ -371,7 +371,7 @@ static void HTIOTPeerDetermine(struct ieee80211_device 
*ieee)
        else if ((memcmp(net->bssid, UNKNOWN_BORADCOM, 3) == 0) ||
                 (memcmp(net->bssid, LINKSYSWRT330_LINKSYSWRT300_BROADCOM, 3) 
== 0) ||
                 (memcmp(net->bssid, LINKSYSWRT350_LINKSYSWRT150_BROADCOM, 3) 
== 0) ||
-                (memcmp(net->bssid, NETGEAR834Bv2_BROADCOM, 3) == 0) )
+                (memcmp(net->bssid, NETGEAR834Bv2_BROADCOM, 3) == 0))
                pHTInfo->IOTPeer = HT_IOT_PEER_BROADCOM;
        else if ((memcmp(net->bssid, BELKINF5D8233V1_RALINK, 3) == 0) ||
                 (memcmp(net->bssid, BELKINF5D82334V3_RALINK, 3) == 0) ||
@@ -641,7 +641,7 @@ void HTConstructInfoElement(struct ieee80211_device *ieee, 
u8 *posHTInfo, u8 *le
        }
 
        memset(posHTInfo, 0, *len);
-       if ( (ieee->iw_mode == IW_MODE_ADHOC) || (ieee->iw_mode == 
IW_MODE_MASTER)) { //ap mode is not currently supported
+       if ((ieee->iw_mode == IW_MODE_ADHOC) || (ieee->iw_mode == 
IW_MODE_MASTER)) { //ap mode is not currently supported
                pHTInfoEle->ControlChl                  = 
ieee->current_network.channel;
                pHTInfoEle->ExtChlOffset                        = 
((!pHT->bRegBW40MHz) ? HT_EXTCHNL_OFFSET_NO_EXT :
                                                                                
        (ieee->current_network.channel <= 6) ?
@@ -867,7 +867,7 @@ static u8 HTFilterMCSRate(struct ieee80211_device *ieee, u8 
*pSupportMCS,
        u8 i = 0;
 
        // filter out operational rate set not supported by AP, the length of 
it is 16
-       for (i = 0; i <= 15; i++){
+       for (i = 0; i <= 15; i++) {
                pOperateMCS[i] = 
ieee->Regdot11HTOperationalRateSet[i]&pSupportMCS[i];
        }
 
@@ -965,7 +965,7 @@ void HTOnAssocRsp(struct ieee80211_device *ieee)
 
        nMaxAMSDUSize = (pPeerHTCap->MaxAMSDUSize == 0) ? 3839 : 7935;
 
-       if (pHTInfo->nAMSDU_MaxSize > nMaxAMSDUSize )
+       if (pHTInfo->nAMSDU_MaxSize > nMaxAMSDUSize)
                pHTInfo->nCurrent_AMSDU_MaxSize = nMaxAMSDUSize;
        else
                pHTInfo->nCurrent_AMSDU_MaxSize = pHTInfo->nAMSDU_MaxSize;
@@ -1009,7 +1009,7 @@ void HTOnAssocRsp(struct ieee80211_device *ieee)
                pHTInfo->CurrentMPDUDensity = pHTInfo->MPDU_Density;
        else
                pHTInfo->CurrentMPDUDensity = pPeerHTCap->MPDUDensity;
-       if (ieee->pairwise_key_type != KEY_TYPE_NA )
+       if (ieee->pairwise_key_type != KEY_TYPE_NA)
                pHTInfo->CurrentMPDUDensity     = 7; // 8us
        // Force TX AMSDU
 
-- 
2.16.3

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to