Commit 5ef43de1 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

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: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent df5d5bc8
...@@ -340,10 +340,10 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee, ...@@ -340,10 +340,10 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee,
TsStartAddBaProcess(ieee, pTxTs); TsStartAddBaProcess(ieee, pTxTs);
goto FORCED_AGG_SETTING; 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)) 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 else
goto FORCED_AGG_SETTING; goto FORCED_AGG_SETTING;
} }
......
...@@ -594,7 +594,7 @@ int ieee80211_rx_DELBA(struct ieee80211_device *ieee, struct sk_buff *skb) ...@@ -594,7 +594,7 @@ int ieee80211_rx_DELBA(struct ieee80211_device *ieee, struct sk_buff *skb)
return -1; return -1;
} }
pTxTs->bUsingBa = false; pTxTs->using_ba = false;
pTxTs->add_ba_req_in_progress = false; pTxTs->add_ba_req_in_progress = false;
pTxTs->add_ba_req_delayed = false; pTxTs->add_ba_req_delayed = false;
del_timer_sync(&pTxTs->TsAddBaTimer); del_timer_sync(&pTxTs->TsAddBaTimer);
......
...@@ -34,7 +34,7 @@ struct tx_ts_record { ...@@ -34,7 +34,7 @@ struct tx_ts_record {
/* QOS_DL_RECORD DLRecord; */ /* QOS_DL_RECORD DLRecord; */
u8 add_ba_req_in_progress; u8 add_ba_req_in_progress;
u8 add_ba_req_delayed; u8 add_ba_req_delayed;
u8 bUsingBa; u8 using_ba;
struct timer_list TsAddBaTimer; struct timer_list TsAddBaTimer;
u8 num; u8 num;
}; };
......
...@@ -116,7 +116,7 @@ static void ResetTxTsEntry(struct tx_ts_record *pTS) ...@@ -116,7 +116,7 @@ static void ResetTxTsEntry(struct tx_ts_record *pTS)
pTS->tx_cur_seq = 0; pTS->tx_cur_seq = 0;
pTS->add_ba_req_in_progress = false; pTS->add_ba_req_in_progress = false;
pTS->add_ba_req_delayed = 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_admitted_ba_record); //For BA Originator
ResetBaEntry(&pTS->tx_pending_ba_record); ResetBaEntry(&pTS->tx_pending_ba_record);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment