Staging: rtl8192e: Rename variable pRxTs in function rtllib_rx_ba_inact_timeout()
authorTree Davies <tdavies@darkphysics.net>
Fri, 25 Aug 2023 14:08:36 +0000 (07:08 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Sep 2023 08:35:04 +0000 (10:35 +0200)
Rename varialbe pRxTs in function rtllib_rx_ba_inact_timeout() 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-6-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BAProc.c

index 2aa624bcbfd16f5532e4181a978b60983e383086..bc6f9e8c5dd880f55a2ba63a77a3f709d9cc1559 100644 (file)
@@ -532,13 +532,13 @@ void rtllib_tx_ba_inact_timeout(struct timer_list *t)
 
 void rtllib_rx_ba_inact_timeout(struct timer_list *t)
 {
-       struct rx_ts_record *pRxTs = from_timer(pRxTs, t,
+       struct rx_ts_record *ts = from_timer(ts, t,
                                              rx_admitted_ba_record.timer);
-       struct rtllib_device *ieee = container_of(pRxTs, struct rtllib_device,
-                                    RxTsRecord[pRxTs->num]);
+       struct rtllib_device *ieee = container_of(ts, struct rtllib_device,
+                                    RxTsRecord[ts->num]);
 
-       rx_ts_delete_ba(ieee, pRxTs);
-       rtllib_send_DELBA(ieee, pRxTs->ts_common_info.Addr,
-                         &pRxTs->rx_admitted_ba_record, RX_DIR,
+       rx_ts_delete_ba(ieee, ts);
+       rtllib_send_DELBA(ieee, ts->ts_common_info.Addr,
+                         &ts->rx_admitted_ba_record, RX_DIR,
                          DELBA_REASON_TIMEOUT);
 }