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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
		}
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -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;
};
+1 −1
Original line number Diff line number Diff line
@@ -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);
}