mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 22:57:21 -04:00
Staging: rtl8192e: Rename variable LpsIdleCount
Rename variable LpsIdleCount to lps_idle_count to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20240126223106.986093-17-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1650401eac
commit
0dd08a4b53
@@ -208,12 +208,12 @@ void rtl92e_leisure_ps_enter(struct net_device *dev)
|
||||
return;
|
||||
|
||||
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)
|
||||
_rtl92e_ps_set_mode(dev, RTLLIB_PS_MBCAST | RTLLIB_PS_UNICAST);
|
||||
} else {
|
||||
psc->LpsIdleCount++;
|
||||
psc->lps_idle_count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1071,7 +1071,7 @@ struct rt_pwr_save_ctrl {
|
||||
enum ips_callback_function ReturnPoint;
|
||||
|
||||
bool bLeisurePs;
|
||||
u8 LpsIdleCount;
|
||||
u8 lps_idle_count;
|
||||
u8 lps_awake_intvl;
|
||||
|
||||
u32 CurPsLevel;
|
||||
|
||||
@@ -1079,7 +1079,7 @@ static void rtllib_associate_complete_wq(void *data)
|
||||
ieee->link_detect_info.NumRecvBcnInPeriod = 1;
|
||||
ieee->link_detect_info.NumRecvDataInPeriod = 1;
|
||||
}
|
||||
psc->LpsIdleCount = 0;
|
||||
psc->lps_idle_count = 0;
|
||||
ieee->link_change(ieee->dev);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user