mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 14:05:39 +00:00
Staging: rtl8192e: Rename variable NumTxOkInPeriod
Rename variable NumTxOkInPeriod to num_tx_ok_in_period to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20231225202314.31869-3-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d65a2fc00f
commit
a24e0197f3
@ -972,11 +972,11 @@ static void _rtl92e_watchdog_wq_cb(void *data)
|
||||
}
|
||||
if ((ieee->link_state == MAC80211_LINKED) && (ieee->iw_mode == IW_MODE_INFRA)) {
|
||||
if (ieee->link_detect_info.NumRxOkInPeriod > 100 ||
|
||||
ieee->link_detect_info.NumTxOkInPeriod > 100)
|
||||
ieee->link_detect_info.num_tx_ok_in_period > 100)
|
||||
bBusyTraffic = true;
|
||||
|
||||
if (ieee->link_detect_info.NumRxOkInPeriod > 4000 ||
|
||||
ieee->link_detect_info.NumTxOkInPeriod > 4000) {
|
||||
ieee->link_detect_info.num_tx_ok_in_period > 4000) {
|
||||
bHigherBusyTraffic = true;
|
||||
if (ieee->link_detect_info.NumRxOkInPeriod > 5000)
|
||||
bHigherBusyRxTraffic = true;
|
||||
@ -985,7 +985,7 @@ static void _rtl92e_watchdog_wq_cb(void *data)
|
||||
}
|
||||
|
||||
if (((ieee->link_detect_info.NumRxUnicastOkInPeriod +
|
||||
ieee->link_detect_info.NumTxOkInPeriod) > 8) ||
|
||||
ieee->link_detect_info.num_tx_ok_in_period) > 8) ||
|
||||
(ieee->link_detect_info.NumRxUnicastOkInPeriod > 2))
|
||||
bEnterPS = false;
|
||||
else
|
||||
@ -1004,7 +1004,7 @@ static void _rtl92e_watchdog_wq_cb(void *data)
|
||||
}
|
||||
|
||||
ieee->link_detect_info.NumRxOkInPeriod = 0;
|
||||
ieee->link_detect_info.NumTxOkInPeriod = 0;
|
||||
ieee->link_detect_info.num_tx_ok_in_period = 0;
|
||||
ieee->link_detect_info.NumRxUnicastOkInPeriod = 0;
|
||||
ieee->link_detect_info.bBusyTraffic = bBusyTraffic;
|
||||
|
||||
@ -1773,22 +1773,22 @@ static irqreturn_t _rtl92e_irq(int irq, void *netdev)
|
||||
tasklet_schedule(&priv->irq_rx_tasklet);
|
||||
|
||||
if (inta & IMR_BKDOK) {
|
||||
priv->rtllib->link_detect_info.NumTxOkInPeriod++;
|
||||
priv->rtllib->link_detect_info.num_tx_ok_in_period++;
|
||||
_rtl92e_tx_isr(dev, BK_QUEUE);
|
||||
}
|
||||
|
||||
if (inta & IMR_BEDOK) {
|
||||
priv->rtllib->link_detect_info.NumTxOkInPeriod++;
|
||||
priv->rtllib->link_detect_info.num_tx_ok_in_period++;
|
||||
_rtl92e_tx_isr(dev, BE_QUEUE);
|
||||
}
|
||||
|
||||
if (inta & IMR_VIDOK) {
|
||||
priv->rtllib->link_detect_info.NumTxOkInPeriod++;
|
||||
priv->rtllib->link_detect_info.num_tx_ok_in_period++;
|
||||
_rtl92e_tx_isr(dev, VI_QUEUE);
|
||||
}
|
||||
|
||||
if (inta & IMR_VODOK) {
|
||||
priv->rtllib->link_detect_info.NumTxOkInPeriod++;
|
||||
priv->rtllib->link_detect_info.num_tx_ok_in_period++;
|
||||
_rtl92e_tx_isr(dev, VO_QUEUE);
|
||||
}
|
||||
|
||||
|
@ -1118,7 +1118,7 @@ struct rt_link_detect {
|
||||
u16 SlotNum;
|
||||
u16 SlotIndex;
|
||||
|
||||
u32 NumTxOkInPeriod;
|
||||
u32 num_tx_ok_in_period;
|
||||
u32 NumRxOkInPeriod;
|
||||
u32 NumRxUnicastOkInPeriod;
|
||||
bool bBusyTraffic;
|
||||
|
@ -1150,7 +1150,7 @@ static void rtllib_rx_check_leave_lps(struct rtllib_device *ieee, u8 unicast,
|
||||
if (unicast) {
|
||||
if (ieee->link_state == MAC80211_LINKED) {
|
||||
if (((ieee->link_detect_info.NumRxUnicastOkInPeriod +
|
||||
ieee->link_detect_info.NumTxOkInPeriod) > 8) ||
|
||||
ieee->link_detect_info.num_tx_ok_in_period) > 8) ||
|
||||
(ieee->link_detect_info.NumRxUnicastOkInPeriod > 2)) {
|
||||
ieee->leisure_ps_leave(ieee->dev);
|
||||
}
|
||||
|
@ -2076,7 +2076,7 @@ int rtllib_softmac_init(struct rtllib_device *ieee)
|
||||
ieee->link_detect_info.SlotNum = 2;
|
||||
ieee->link_detect_info.NumRecvBcnInPeriod = 0;
|
||||
ieee->link_detect_info.NumRecvDataInPeriod = 0;
|
||||
ieee->link_detect_info.NumTxOkInPeriod = 0;
|
||||
ieee->link_detect_info.num_tx_ok_in_period = 0;
|
||||
ieee->link_detect_info.NumRxOkInPeriod = 0;
|
||||
ieee->link_detect_info.NumRxUnicastOkInPeriod = 0;
|
||||
ieee->bIsAggregateFrame = false;
|
||||
|
Loading…
Reference in New Issue
Block a user