]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging:rtl8192u: Rename RxTimeoutIndicateSeq _Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Fri, 27 Jul 2018 17:31:17 +0000 (18:31 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 29 Jul 2018 08:15:52 +0000 (10:15 +0200)
Rename member variable RxTimeoutIndicateSeq to rx_timeout_indicate_seq.
This change clears the checkpatch issue with CamelCase naming.

The resulting changes are purely coding style in nature and should have
no impact on 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_rx.c
drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
drivers/staging/rtl8192u/ieee80211/rtl819x_TSProc.c

index e1f5161be4f331e4b06251e2e1a68961c9571caa..99fb59a3b8f0f6ce36d8cf466e98791429cc3104 100644 (file)
@@ -741,7 +741,7 @@ static void RxReorderIndicatePacket(struct ieee80211_device *ieee,
        if (index>0) {
                // Cancel previous pending timer.
        //      del_timer_sync(&pTS->RxPktPendingTimer);
-               pTS->RxTimeoutIndicateSeq = 0xffff;
+               pTS->rx_timeout_indicate_seq = 0xffff;
 
                // Indicate packets
                if(index>REORDER_WIN_SIZE){
@@ -752,10 +752,10 @@ static void RxReorderIndicatePacket(struct ieee80211_device *ieee,
                ieee80211_indicate_packets(ieee, prxbIndicateArray, index);
        }
 
-       if (bPktInBuf && pTS->RxTimeoutIndicateSeq==0xffff) {
+       if (bPktInBuf && pTS->rx_timeout_indicate_seq == 0xffff) {
                // Set new pending timer.
                IEEE80211_DEBUG(IEEE80211_DL_REORDER,"%s(): SET rx timeout timer\n", __func__);
-               pTS->RxTimeoutIndicateSeq = pTS->rx_indicate_seq;
+               pTS->rx_timeout_indicate_seq = pTS->rx_indicate_seq;
                if(timer_pending(&pTS->RxPktPendingTimer))
                        del_timer_sync(&pTS->RxPktPendingTimer);
                pTS->RxPktPendingTimer.expires = jiffies +
index 98be5e1b7c84e7a212cb7451eed0a3cfaaa6fafd..02b76d49b5e10b818d2292a42b6af16c4c27ea5b 100644 (file)
@@ -40,7 +40,7 @@ struct tx_ts_record {
 struct rx_ts_record {
        struct ts_common_info           ts_common_info;
        u16                             rx_indicate_seq;
-       u16                             RxTimeoutIndicateSeq;
+       u16                             rx_timeout_indicate_seq;
        struct list_head                RxPendingPktList;
        struct timer_list               RxPktPendingTimer;
        BA_RECORD                       RxAdmittedBARecord;      /*  For BA Recipient */
index ac45b502d07db1095dd84a42920b87d79418c7be..e3877f35e677d9ebce07019ab678a43abb26bea8 100644 (file)
@@ -37,7 +37,7 @@ static void RxPktPendingTimeout(struct timer_list *t)
 
        spin_lock_irqsave(&(ieee->reorder_spinlock), flags);
        IEEE80211_DEBUG(IEEE80211_DL_REORDER,"==================>%s()\n",__func__);
-       if(pRxTs->RxTimeoutIndicateSeq != 0xffff) {
+       if(pRxTs->rx_timeout_indicate_seq != 0xffff) {
                // Indicate the pending packets sequentially according to SeqNum until meet the gap.
                while(!list_empty(&pRxTs->RxPendingPktList)) {
                        pReorderEntry = (PRX_REORDER_ENTRY)list_entry(pRxTs->RxPendingPktList.prev,RX_REORDER_ENTRY,List);
@@ -64,8 +64,8 @@ static void RxPktPendingTimeout(struct timer_list *t)
        }
 
        if(index>0) {
-               // Set RxTimeoutIndicateSeq to 0xffff to indicate no pending packets in buffer now.
-               pRxTs->RxTimeoutIndicateSeq = 0xffff;
+               // Set rx_timeout_indicate_seq to 0xffff to indicate no pending packets in buffer now.
+               pRxTs->rx_timeout_indicate_seq = 0xffff;
 
                // Indicate packets
                if(index > REORDER_WIN_SIZE) {
@@ -76,8 +76,8 @@ static void RxPktPendingTimeout(struct timer_list *t)
                ieee80211_indicate_packets(ieee, ieee->stats_IndicateArray, index);
        }
 
-       if(bPktInBuf && (pRxTs->RxTimeoutIndicateSeq==0xffff)) {
-               pRxTs->RxTimeoutIndicateSeq = pRxTs->rx_indicate_seq;
+       if(bPktInBuf && (pRxTs->rx_timeout_indicate_seq == 0xffff)) {
+               pRxTs->rx_timeout_indicate_seq = pRxTs->rx_indicate_seq;
                mod_timer(&pRxTs->RxPktPendingTimer,
                          jiffies + msecs_to_jiffies(ieee->pHTInfo->RxReorderPendingTime));
        }
@@ -125,7 +125,7 @@ static void ResetRxTsEntry(struct rx_ts_record *pTS)
 {
        ResetTsCommonInfo(&pTS->ts_common_info);
        pTS->rx_indicate_seq = 0xffff; // This indicate the rx_indicate_seq is not used now!!
-       pTS->RxTimeoutIndicateSeq = 0xffff; // This indicate the RxTimeoutIndicateSeq is not used now!!
+       pTS->rx_timeout_indicate_seq = 0xffff; // This indicate the rx_timeout_indicate_seq is not used now!!
        ResetBaEntry(&pTS->RxAdmittedBARecord);   // For BA Recipient
 }