OSDN Git Service

staging:rtl8192u: Rename bUsingBa - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Fri, 27 Jul 2018 17:31:11 +0000 (18:31 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 29 Jul 2018 08:15:52 +0000 (10:15 +0200)
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>
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 2fb9464..cc4049d 100644 (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;
                }
index 93967e5..7bd2d0f 100644 (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);
index 4c11ed7..4cb53c7 100644 (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;
 };
index ba77632..09fb339 100644 (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);
 }