Rename the bitfield member 'MPDUDensity' to 'mpdu_density', this
clears the checkpatch issue with CamelCase naming.

This is a coding style change which should not have an impact on
runtime code execution.

Signed-off-by: John Whitmore <johnfwhitm...@gmail.com>
---
 drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h    |  2 +-
 .../staging/rtl8192u/ieee80211/rtl819x_HTProc.c    | 14 +++++++-------
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h 
b/drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h
index 12db4ac9703b..9066f309bac9 100644
--- a/drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h
+++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_HT.h
@@ -56,7 +56,7 @@ struct ht_capability_ele {
 
        //MAC HT parameters info
        u8      max_rx_ampdu_factor:2;
-       u8      MPDUDensity:3;
+       u8      mpdu_density:3;
        u8      Rsvd2:3;
 
        //Supported MCS set
diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c 
b/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
index 4fc919ebd10b..19c4903b572f 100644
--- a/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.c
@@ -99,9 +99,9 @@ void HTUpdateDefaultSetting(struct ieee80211_device *ieee)
 #endif
        /*
         * 8190 only, Realtek proprietary aggregation mode
-        * Set MPDUDensity=2,   1: Set MPDUDensity=2(32k)  for Realtek AP and 
set MPDUDensity=0(8k) for others
+        * Set mpdu_density=2,   1: Set mpdu_density=2(32k)  for Realtek AP and 
set mpdu_density=0(8k) for others
         */
-       pHTInfo->bRegRT2RTAggregation = 1;//0: Set MPDUDensity=2,   1: Set 
MPDUDensity=2(32k)  for Realtek AP and set MPDUDensity=0(8k) for others
+       pHTInfo->bRegRT2RTAggregation = 1;//0: Set mpdu_density=2,   1: Set 
mpdu_density=2(32k)  for Realtek AP and set mpdu_density=0(8k) for others
 
        // For Rx Reorder Control
        pHTInfo->bRegRxReorderEnable = 1;
@@ -148,7 +148,7 @@ void HTDebugHTCapability(u8 *CapIE, u8 *TitleString)
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tMax AMSDU Size = %s\n", 
(pCapELE->max_amsdu_size) ? "3839" : "7935");
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tSupport CCK in 20/40 mode = %s\n", 
(pCapELE->dss_cck) ? "YES" : "NO");
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tMax AMPDU Factor = %d\n", 
pCapELE->max_rx_ampdu_factor);
-       IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tMPDU Density = %d\n", 
pCapELE->MPDUDensity);
+       IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tMPDU Density = %d\n", 
pCapELE->mpdu_density);
        IEEE80211_DEBUG(IEEE80211_DL_HT,  "\tMCS Rate Set = 
[%x][%x][%x][%x][%x]\n", pCapELE->MCS[0],\
                                pCapELE->MCS[1], pCapELE->MCS[2], 
pCapELE->MCS[3], pCapELE->MCS[4]);
 }
@@ -570,11 +570,11 @@ void HTConstructCapabilityElement(struct ieee80211_device 
*ieee, u8 *posHTCap, u
        IEEE80211_DEBUG(IEEE80211_DL_HT, "TX HT cap/info ele BW=%d 
max_amsdu_size:%d dss_cck:%d\n", pCapELE->chl_width, pCapELE->max_amsdu_size, 
pCapELE->dss_cck);
 
        if (IsEncrypt) {
-               pCapELE->MPDUDensity    = 7; // 8us
+               pCapELE->mpdu_density   = 7; // 8us
                pCapELE->max_rx_ampdu_factor = 2; // 2 is for 32 K and 3 is 64K
        } else {
                pCapELE->max_rx_ampdu_factor = 3; // 2 is for 32 K and 3 is 64K
-               pCapELE->MPDUDensity    = 0; // no density
+               pCapELE->mpdu_density   = 0; // no density
        }
 
        //Supported MCS set
@@ -1005,10 +1005,10 @@ void HTOnAssocRsp(struct ieee80211_device *ieee)
         * <2> Set AMPDU Minimum MPDU Start Spacing
         * 802.11n 3.0 section 9.7d.3
         */
-       if (pHTInfo->MPDU_Density > pPeerHTCap->MPDUDensity)
+       if (pHTInfo->MPDU_Density > pPeerHTCap->mpdu_density)
                pHTInfo->CurrentMPDUDensity = pHTInfo->MPDU_Density;
        else
-               pHTInfo->CurrentMPDUDensity = pPeerHTCap->MPDUDensity;
+               pHTInfo->CurrentMPDUDensity = pPeerHTCap->mpdu_density;
        if (ieee->pairwise_key_type != KEY_TYPE_NA)
                pHTInfo->CurrentMPDUDensity     = 7; // 8us
        // Force TX AMSDU
-- 
2.18.0

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

Reply via email to