mirror of https://gitee.com/openkylin/linux.git
staging:rtl8192u: Rename bUsingBa - Style
Rename the member variable bUsingBa to using_ba. This change clears the checkpatch issue with CamelCase naming. The resulting changes are purely coding style and should not impact 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
df5d5bc8d0
commit
5ef43de1d2
|
@ -340,10 +340,10 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee,
|
|||
TsStartAddBaProcess(ieee, pTxTs);
|
||||
goto FORCED_AGG_SETTING;
|
||||
}
|
||||
else if (!pTxTs->bUsingBa)
|
||||
else if (!pTxTs->using_ba)
|
||||
{
|
||||
if (SN_LESS(pTxTs->tx_admitted_ba_record.BaStartSeqCtrl.field.SeqNum, (pTxTs->tx_cur_seq + 1) % 4096))
|
||||
pTxTs->bUsingBa = true;
|
||||
pTxTs->using_ba = true;
|
||||
else
|
||||
goto FORCED_AGG_SETTING;
|
||||
}
|
||||
|
|
|
@ -594,7 +594,7 @@ int ieee80211_rx_DELBA(struct ieee80211_device *ieee, struct sk_buff *skb)
|
|||
return -1;
|
||||
}
|
||||
|
||||
pTxTs->bUsingBa = false;
|
||||
pTxTs->using_ba = false;
|
||||
pTxTs->add_ba_req_in_progress = false;
|
||||
pTxTs->add_ba_req_delayed = false;
|
||||
del_timer_sync(&pTxTs->TsAddBaTimer);
|
||||
|
|
|
@ -34,7 +34,7 @@ struct tx_ts_record {
|
|||
/* QOS_DL_RECORD DLRecord; */
|
||||
u8 add_ba_req_in_progress;
|
||||
u8 add_ba_req_delayed;
|
||||
u8 bUsingBa;
|
||||
u8 using_ba;
|
||||
struct timer_list TsAddBaTimer;
|
||||
u8 num;
|
||||
};
|
||||
|
|
|
@ -116,7 +116,7 @@ static void ResetTxTsEntry(struct tx_ts_record *pTS)
|
|||
pTS->tx_cur_seq = 0;
|
||||
pTS->add_ba_req_in_progress = false;
|
||||
pTS->add_ba_req_delayed = false;
|
||||
pTS->bUsingBa = false;
|
||||
pTS->using_ba = false;
|
||||
ResetBaEntry(&pTS->tx_admitted_ba_record); //For BA Originator
|
||||
ResetBaEntry(&pTS->tx_pending_ba_record);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue