staging:rtl8192u: Rename bAddBaReqDelayed - Style
Rename the member variable bAddBaReqDelayed to add_ba_req_delayed This change clears the checkpatch issue with CamelCase naming. The resulting changes are purely coding style changes 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
e5afcc0f40
commit
df5d5bc8d0
@ -500,7 +500,7 @@ int ieee80211_rx_ADDBARsp(struct ieee80211_device *ieee, struct sk_buff *skb)
|
||||
//
|
||||
if (pBaParamSet->field.BAPolicy == BA_POLICY_DELAYED) {
|
||||
// Since this is a kind of ADDBA failed, we delay next ADDBA process.
|
||||
pTS->bAddBaReqDelayed = true;
|
||||
pTS->add_ba_req_delayed = true;
|
||||
DeActivateBAEntry(ieee, pAdmittedBA);
|
||||
ReasonCode = DELBA_REASON_END_BA;
|
||||
goto OnADDBARsp_Reject;
|
||||
@ -518,7 +518,7 @@ int ieee80211_rx_ADDBARsp(struct ieee80211_device *ieee, struct sk_buff *skb)
|
||||
ActivateBAEntry(ieee, pAdmittedBA, *pBaTimeoutVal);
|
||||
} else {
|
||||
// Delay next ADDBA process.
|
||||
pTS->bAddBaReqDelayed = true;
|
||||
pTS->add_ba_req_delayed = true;
|
||||
}
|
||||
|
||||
// End of procedure
|
||||
@ -596,7 +596,7 @@ int ieee80211_rx_DELBA(struct ieee80211_device *ieee, struct sk_buff *skb)
|
||||
|
||||
pTxTs->bUsingBa = false;
|
||||
pTxTs->add_ba_req_in_progress = false;
|
||||
pTxTs->bAddBaReqDelayed = false;
|
||||
pTxTs->add_ba_req_delayed = false;
|
||||
del_timer_sync(&pTxTs->TsAddBaTimer);
|
||||
//PlatformCancelTimer(Adapter, &pTxTs->TsAddBaTimer);
|
||||
TxTsDeleteBA(ieee, pTxTs);
|
||||
@ -672,7 +672,7 @@ void BaSetupTimeOut(struct timer_list *t)
|
||||
struct tx_ts_record *pTxTs = from_timer(pTxTs, t, tx_pending_ba_record.Timer);
|
||||
|
||||
pTxTs->add_ba_req_in_progress = false;
|
||||
pTxTs->bAddBaReqDelayed = true;
|
||||
pTxTs->add_ba_req_delayed = true;
|
||||
pTxTs->tx_pending_ba_record.bValid = false;
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ struct tx_ts_record {
|
||||
BA_RECORD tx_admitted_ba_record; /* For BA Originator */
|
||||
/* QOS_DL_RECORD DLRecord; */
|
||||
u8 add_ba_req_in_progress;
|
||||
u8 bAddBaReqDelayed;
|
||||
u8 add_ba_req_delayed;
|
||||
u8 bUsingBa;
|
||||
struct timer_list TsAddBaTimer;
|
||||
u8 num;
|
||||
|
@ -115,7 +115,7 @@ static void ResetTxTsEntry(struct tx_ts_record *pTS)
|
||||
ResetTsCommonInfo(&pTS->ts_common_info);
|
||||
pTS->tx_cur_seq = 0;
|
||||
pTS->add_ba_req_in_progress = false;
|
||||
pTS->bAddBaReqDelayed = false;
|
||||
pTS->add_ba_req_delayed = false;
|
||||
pTS->bUsingBa = false;
|
||||
ResetBaEntry(&pTS->tx_admitted_ba_record); //For BA Originator
|
||||
ResetBaEntry(&pTS->tx_pending_ba_record);
|
||||
@ -524,7 +524,7 @@ void TsStartAddBaProcess(struct ieee80211_device *ieee, struct tx_ts_record *pTx
|
||||
{
|
||||
if(!pTxTS->add_ba_req_in_progress) {
|
||||
pTxTS->add_ba_req_in_progress = true;
|
||||
if(pTxTS->bAddBaReqDelayed) {
|
||||
if(pTxTS->add_ba_req_delayed) {
|
||||
IEEE80211_DEBUG(IEEE80211_DL_BA, "TsStartAddBaProcess(): Delayed Start ADDBA after 60 sec!!\n");
|
||||
mod_timer(&pTxTS->TsAddBaTimer,
|
||||
jiffies + msecs_to_jiffies(TS_ADDBA_DELAY));
|
||||
|
Loading…
Reference in New Issue
Block a user