Commit 4925d4b7 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Rename TxCurSeq - Style

Rename the member variable TxCurSeq to tx_cur_seq. This change clears
the checkpatch issue with CamelCase naming.

The changes are coding style changes which 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 c1fdc5de
...@@ -342,7 +342,7 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee, ...@@ -342,7 +342,7 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee,
} }
else if (!pTxTs->bUsingBa) else if (!pTxTs->bUsingBa)
{ {
if (SN_LESS(pTxTs->TxAdmittedBARecord.BaStartSeqCtrl.field.SeqNum, (pTxTs->TxCurSeq+1)%4096)) if (SN_LESS(pTxTs->TxAdmittedBARecord.BaStartSeqCtrl.field.SeqNum, (pTxTs->tx_cur_seq + 1) % 4096))
pTxTs->bUsingBa = true; pTxTs->bUsingBa = true;
else else
goto FORCED_AGG_SETTING; goto FORCED_AGG_SETTING;
...@@ -589,7 +589,7 @@ static void ieee80211_query_seqnum(struct ieee80211_device *ieee, ...@@ -589,7 +589,7 @@ static void ieee80211_query_seqnum(struct ieee80211_device *ieee,
{ {
return; return;
} }
pTS->TxCurSeq = (pTS->TxCurSeq+1)%4096; pTS->tx_cur_seq = (pTS->tx_cur_seq + 1) % 4096;
} }
} }
......
...@@ -630,7 +630,7 @@ TsInitAddBA( ...@@ -630,7 +630,7 @@ TsInitAddBA(
// BufferSize: This need to be set according to A-MPDU vector // BufferSize: This need to be set according to A-MPDU vector
pBA->BaParamSet.field.BufferSize = 32; // BufferSize: This need to be set according to A-MPDU vector pBA->BaParamSet.field.BufferSize = 32; // BufferSize: This need to be set according to A-MPDU vector
pBA->BaTimeoutValue = 0; // Timeout value: Set 0 to disable Timer pBA->BaTimeoutValue = 0; // Timeout value: Set 0 to disable Timer
pBA->BaStartSeqCtrl.field.SeqNum = (pTS->TxCurSeq + 3) % 4096; // Block Ack will start after 3 packets later. pBA->BaStartSeqCtrl.field.SeqNum = (pTS->tx_cur_seq + 3) % 4096; // Block Ack will start after 3 packets later.
ActivateBAEntry(ieee, pBA, BA_SETUP_TIMEOUT); ActivateBAEntry(ieee, pBA, BA_SETUP_TIMEOUT);
......
...@@ -28,7 +28,7 @@ struct ts_common_info { ...@@ -28,7 +28,7 @@ struct ts_common_info {
struct tx_ts_record { struct tx_ts_record {
struct ts_common_info ts_common_info; struct ts_common_info ts_common_info;
u16 TxCurSeq; u16 tx_cur_seq;
BA_RECORD TxPendingBARecord; /* For BA Originator */ BA_RECORD TxPendingBARecord; /* For BA Originator */
BA_RECORD TxAdmittedBARecord; /* For BA Originator */ BA_RECORD TxAdmittedBARecord; /* For BA Originator */
/* QOS_DL_RECORD DLRecord; */ /* QOS_DL_RECORD DLRecord; */
......
...@@ -113,7 +113,7 @@ static void ResetTsCommonInfo(struct ts_common_info *pTsCommonInfo) ...@@ -113,7 +113,7 @@ static void ResetTsCommonInfo(struct ts_common_info *pTsCommonInfo)
static void ResetTxTsEntry(struct tx_ts_record *pTS) static void ResetTxTsEntry(struct tx_ts_record *pTS)
{ {
ResetTsCommonInfo(&pTS->ts_common_info); ResetTsCommonInfo(&pTS->ts_common_info);
pTS->TxCurSeq = 0; pTS->tx_cur_seq = 0;
pTS->bAddBaReqInProgress = false; pTS->bAddBaReqInProgress = false;
pTS->bAddBaReqDelayed = false; pTS->bAddBaReqDelayed = false;
pTS->bUsingBa = false; pTS->bUsingBa = false;
......
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