mirror of https://gitee.com/openkylin/linux.git
staging:rtl8192u: Rename bEnabled > enabled - Style
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>
This commit is contained in:
parent
3c22fbaf3b
commit
b34db7f48a
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue