Commit 0dd08a4b authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman

Staging: rtl8192e: Rename variable LpsIdleCount

Rename variable LpsIdleCount to lps_idle_count to fix checkpatch
warning Avoid CamelCase.
Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20240126223106.986093-17-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1650401e
...@@ -208,12 +208,12 @@ void rtl92e_leisure_ps_enter(struct net_device *dev) ...@@ -208,12 +208,12 @@ void rtl92e_leisure_ps_enter(struct net_device *dev)
return; return;
if (psc->bLeisurePs) { if (psc->bLeisurePs) {
if (psc->LpsIdleCount >= RT_CHECK_FOR_HANG_PERIOD) { if (psc->lps_idle_count >= RT_CHECK_FOR_HANG_PERIOD) {
if (priv->rtllib->ps == RTLLIB_PS_DISABLED) if (priv->rtllib->ps == RTLLIB_PS_DISABLED)
_rtl92e_ps_set_mode(dev, RTLLIB_PS_MBCAST | RTLLIB_PS_UNICAST); _rtl92e_ps_set_mode(dev, RTLLIB_PS_MBCAST | RTLLIB_PS_UNICAST);
} else { } else {
psc->LpsIdleCount++; psc->lps_idle_count++;
} }
} }
} }
......
...@@ -1071,7 +1071,7 @@ struct rt_pwr_save_ctrl { ...@@ -1071,7 +1071,7 @@ struct rt_pwr_save_ctrl {
enum ips_callback_function ReturnPoint; enum ips_callback_function ReturnPoint;
bool bLeisurePs; bool bLeisurePs;
u8 LpsIdleCount; u8 lps_idle_count;
u8 lps_awake_intvl; u8 lps_awake_intvl;
u32 CurPsLevel; u32 CurPsLevel;
......
...@@ -1079,7 +1079,7 @@ static void rtllib_associate_complete_wq(void *data) ...@@ -1079,7 +1079,7 @@ static void rtllib_associate_complete_wq(void *data)
ieee->link_detect_info.NumRecvBcnInPeriod = 1; ieee->link_detect_info.NumRecvBcnInPeriod = 1;
ieee->link_detect_info.NumRecvDataInPeriod = 1; ieee->link_detect_info.NumRecvDataInPeriod = 1;
} }
psc->LpsIdleCount = 0; psc->lps_idle_count = 0;
ieee->link_change(ieee->dev); ieee->link_change(ieee->dev);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment