OSDN Git Service

staging:rtl8192u: Rename bEnabled > enabled - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Sat, 21 Jul 2018 19:25:46 +0000 (20:25 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 24 Jul 2018 12:03:48 +0000 (14:03 +0200)
Rename the member variable bEnabled to enabled. This change clears the
checkpatch issue with CamelCase. Purely a coding style change which should not
impact runtime execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/dot11d.c
drivers/staging/rtl8192u/ieee80211/dot11d.h
drivers/staging/rtl8192u/r8192U_core.c

index cd63e15..3d2eb19 100644 (file)
@@ -7,7 +7,7 @@ void Dot11d_Init(struct ieee80211_device *ieee)
 {
        struct rt_dot11d_info *pDot11dInfo = GET_DOT11D_INFO(ieee);
 
-       pDot11dInfo->bEnabled = false;
+       pDot11dInfo->enabled = false;
 
        pDot11dInfo->State = DOT11D_STATE_NONE;
        pDot11dInfo->CountryIeLen = 0;
index 8f74263..cfe342d 100644 (file)
@@ -19,7 +19,7 @@ enum dot11d_state {
 struct rt_dot11d_info {
        /* DECLARE_RT_OBJECT(rt_dot11d_info); */
 
-       bool bEnabled; /* dot11MultiDomainCapabilityEnabled */
+       bool enabled; /* dot11MultiDomainCapabilityEnabled */
 
        u16 CountryIeLen; /* > 0 if CountryIeBuf[] contains valid country information element. */
        u8  CountryIeBuf[MAX_IE_LEN];
@@ -41,7 +41,7 @@ struct rt_dot11d_info {
        (des)[5] = (src)[5])
 #define GET_DOT11D_INFO(__pIeeeDev) ((struct rt_dot11d_info *)((__pIeeeDev)->pDot11dInfo))
 
-#define IS_DOT11D_ENABLE(__pIeeeDev) (GET_DOT11D_INFO(__pIeeeDev)->bEnabled)
+#define IS_DOT11D_ENABLE(__pIeeeDev) (GET_DOT11D_INFO(__pIeeeDev)->enabled)
 #define IS_COUNTRY_IE_VALID(__pIeeeDev) (GET_DOT11D_INFO(__pIeeeDev)->CountryIeLen > 0)
 
 #define IS_EQUAL_CIE_SRC(__pIeeeDev, __pTa) eqMacAddr(GET_DOT11D_INFO(__pIeeeDev)->CountryIeSrcAddr, __pTa)
index cf39c0b..c99923d 100644 (file)
@@ -211,7 +211,7 @@ static void rtl819x_set_channel_map(u8 channel_plan, struct r8192_priv *priv)
                /* this flag enabled to follow 11d country IE setting,
                 * otherwise, it shall follow global domain settings.
                 */
-               GET_DOT11D_INFO(ieee)->bEnabled = 0;
+               GET_DOT11D_INFO(ieee)->enabled = 0;
                Dot11d_Reset(ieee);
                ieee->bGlobalDomain = true;
                break;