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:
John Whitmore 2018-07-27 18:31:11 +01:00 committed by Greg Kroah-Hartman
parent df5d5bc8d0
commit 5ef43de1d2
4 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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);

View File

@ -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;
};

View File

@ -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);
}