Staging: rtl8192e: Rename variable pRxTs in function rtllib_rx_DELBA()
authorTree Davies <tdavies@darkphysics.net>
Fri, 25 Aug 2023 14:08:34 +0000 (07:08 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Sep 2023 08:35:04 +0000 (10:35 +0200)
Rename variable pRxTs in function rtllib_rx_DELBA() to ts
to fix checkpatch warning Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20230825140847.501113-4-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BAProc.c

index 03d76765e85f6d9ffc2fda5da8c1dfbfe4bf8e96..c584e9ec48b6dfa487f56a9f5dac551d3b683cde 100644 (file)
@@ -430,9 +430,9 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
        pDelBaParamSet = (union delba_param_set *)&delba->payload[2];
 
        if (pDelBaParamSet->field.initiator == 1) {
-               struct rx_ts_record *pRxTs;
+               struct rx_ts_record *ts;
 
-               if (!GetTs(ieee, (struct ts_common_info **)&pRxTs, dst,
+               if (!GetTs(ieee, (struct ts_common_info **)&ts, dst,
                           (u8)pDelBaParamSet->field.tid, RX_DIR, false)) {
                        netdev_warn(ieee->dev,
                                    "%s(): can't get TS for RXTS. dst:%pM TID:%d\n",
@@ -441,7 +441,7 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
                        return -1;
                }
 
-               rx_ts_delete_ba(ieee, pRxTs);
+               rx_ts_delete_ba(ieee, ts);
        } else {
                struct tx_ts_record *pTxTs;