]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging:rtl8192u: Rename TxCurSeq - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Fri, 27 Jul 2018 17:31:06 +0000 (18:31 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 29 Jul 2018 08:15:51 +0000 (10:15 +0200)
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: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c
drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
drivers/staging/rtl8192u/ieee80211/rtl819x_TSProc.c

index 142b86b393dcb5d23cbdab8d2dcf3397ec551ab5..77ec1d5938be0f339fc19951db4a7124e45a3fa1 100644 (file)
@@ -342,7 +342,7 @@ static void ieee80211_tx_query_agg_cap(struct ieee80211_device *ieee,
                }
                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;
                        else
                                goto FORCED_AGG_SETTING;
@@ -589,7 +589,7 @@ static void ieee80211_query_seqnum(struct ieee80211_device *ieee,
                {
                        return;
                }
-               pTS->TxCurSeq = (pTS->TxCurSeq+1)%4096;
+               pTS->tx_cur_seq = (pTS->tx_cur_seq + 1) % 4096;
        }
 }
 
index 686d4e9173841b64f0d4eef874ab1d2c6da591f7..b217310f9875449ec9a021fe22c69a4bd564f10d 100644 (file)
@@ -630,7 +630,7 @@ TsInitAddBA(
        // 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->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);
 
index e2c2001dc5ca907ddb2378a6079442fceddd27c2..8bb55e537bfda45cc0346530d5e3bc22a5d9a53c 100644 (file)
@@ -28,7 +28,7 @@ struct ts_common_info {
 
 struct tx_ts_record {
        struct ts_common_info           ts_common_info;
-       u16                             TxCurSeq;
+       u16                             tx_cur_seq;
        BA_RECORD                       TxPendingBARecord;      /*  For BA Originator */
        BA_RECORD                       TxAdmittedBARecord;     /*  For BA Originator */
 /*     QOS_DL_RECORD           DLRecord; */
index e1ce4e5096bb117d204a701e1e2074e722ebe7fb..3dd42091ed9a8c1b22ad6388cb6c82912e03774b 100644 (file)
@@ -113,7 +113,7 @@ static void ResetTsCommonInfo(struct ts_common_info *pTsCommonInfo)
 static void ResetTxTsEntry(struct tx_ts_record *pTS)
 {
        ResetTsCommonInfo(&pTS->ts_common_info);
-       pTS->TxCurSeq = 0;
+       pTS->tx_cur_seq = 0;
        pTS->bAddBaReqInProgress = false;
        pTS->bAddBaReqDelayed = false;
        pTS->bUsingBa = false;