mirror of https://gitee.com/openkylin/linux.git
staging:rtl8192u: Rename Dot11d_Reset - Style
The function Dot11d_Reset causes a checkpatch issue due to its use of CamelCase naming, so has been renamed to dot11d_reset. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore <johnfwhitmore@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c01f06b750
commit
6a184731c2
|
@ -20,7 +20,7 @@ void dot11d_init(struct ieee80211_device *ieee)
|
|||
EXPORT_SYMBOL(dot11d_init);
|
||||
|
||||
/* Reset to the state as we are just entering a regulatory domain. */
|
||||
void Dot11d_Reset(struct ieee80211_device *ieee)
|
||||
void dot11d_reset(struct ieee80211_device *ieee)
|
||||
{
|
||||
u32 i;
|
||||
struct rt_dot11d_info *pDot11dInfo = GET_DOT11D_INFO(ieee);
|
||||
|
@ -38,7 +38,7 @@ void Dot11d_Reset(struct ieee80211_device *ieee)
|
|||
pDot11dInfo->country_ie_len = 0;
|
||||
RESET_CIE_WATCHDOG(ieee);
|
||||
}
|
||||
EXPORT_SYMBOL(Dot11d_Reset);
|
||||
EXPORT_SYMBOL(dot11d_reset);
|
||||
|
||||
/*
|
||||
* Update country IE from Beacon or Probe Resopnse and configure PHY for
|
||||
|
@ -127,7 +127,7 @@ void DOT11D_ScanComplete(struct ieee80211_device *dev)
|
|||
case DOT11D_STATE_DONE:
|
||||
if (GET_CIE_WATCHDOG(dev) == 0) {
|
||||
/* Reset country IE if previous one is gone. */
|
||||
Dot11d_Reset(dev);
|
||||
dot11d_reset(dev);
|
||||
}
|
||||
break;
|
||||
case DOT11D_STATE_NONE:
|
||||
|
|
|
@ -44,7 +44,7 @@ struct rt_dot11d_info {
|
|||
#define UPDATE_CIE_WATCHDOG(ieee_dev) (++GET_CIE_WATCHDOG(ieee_dev))
|
||||
|
||||
void dot11d_init(struct ieee80211_device *dev);
|
||||
void Dot11d_Reset(struct ieee80211_device *dev);
|
||||
void dot11d_reset(struct ieee80211_device *dev);
|
||||
void Dot11d_UpdateCountryIe(struct ieee80211_device *dev,
|
||||
u8 *pTaddr,
|
||||
u16 CoutryIeLen,
|
||||
|
|
|
@ -2357,7 +2357,7 @@ void ieee80211_disassociate(struct ieee80211_device *ieee)
|
|||
if (ieee->data_hard_stop)
|
||||
ieee->data_hard_stop(ieee->dev);
|
||||
if (IS_DOT11D_ENABLE(ieee))
|
||||
Dot11d_Reset(ieee);
|
||||
dot11d_reset(ieee);
|
||||
ieee->state = IEEE80211_NOLINK;
|
||||
ieee->is_set_key = false;
|
||||
ieee->link_change(ieee->dev);
|
||||
|
|
|
@ -212,7 +212,7 @@ static void rtl819x_set_channel_map(u8 channel_plan, struct r8192_priv *priv)
|
|||
* otherwise, it shall follow global domain settings.
|
||||
*/
|
||||
GET_DOT11D_INFO(ieee)->enabled = 0;
|
||||
Dot11d_Reset(ieee);
|
||||
dot11d_reset(ieee);
|
||||
ieee->bGlobalDomain = true;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue