mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 13:29:17 -04:00
Staging: rtl8192e: Rename variable bAwakePktSent
Rename variable bAwakePktSent to awake_pkt_sent to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20240106055556.430948-7-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
698888bdbd
commit
eba9c98485
@@ -1256,7 +1256,7 @@ static short _rtl92e_tx(struct net_device *dev, struct sk_buff *skb)
|
||||
int idx;
|
||||
u32 fwinfo_size = 0;
|
||||
|
||||
priv->rtllib->bAwakePktSent = true;
|
||||
priv->rtllib->awake_pkt_sent = true;
|
||||
|
||||
fwinfo_size = sizeof(struct tx_fwinfo_8190pci);
|
||||
|
||||
|
||||
@@ -1374,7 +1374,7 @@ struct rtllib_device {
|
||||
|
||||
/* for PS mode */
|
||||
unsigned long last_rx_ps_time;
|
||||
bool bAwakePktSent;
|
||||
bool awake_pkt_sent;
|
||||
u8 LPSDelayCnt;
|
||||
|
||||
/* used if IEEE_SOFTMAC_SINGLE_QUEUE is set */
|
||||
|
||||
@@ -1378,7 +1378,7 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
|
||||
return 0;
|
||||
|
||||
if (time) {
|
||||
if (ieee->bAwakePktSent) {
|
||||
if (ieee->awake_pkt_sent) {
|
||||
psc->LPSAwakeIntvl = 1;
|
||||
} else {
|
||||
u8 max_period = 5;
|
||||
@@ -1461,7 +1461,7 @@ static inline void rtllib_sta_ps(struct work_struct *work)
|
||||
spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
|
||||
}
|
||||
|
||||
ieee->bAwakePktSent = false;
|
||||
ieee->awake_pkt_sent = false;
|
||||
|
||||
} else if (sleep == 2) {
|
||||
spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);
|
||||
|
||||
Reference in New Issue
Block a user