staging: rtl8192e: Remove unused timer InactTimer
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Sat, 24 Jun 2023 06:03:45 +0000 (08:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jul 2023 07:57:38 +0000 (09:57 +0200)
Remove unused timer InactTimer and all the resulting unused code.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/1a7acdd76037327602858a8634d502b46cdc8786.1687583718.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_TS.h
drivers/staging/rtl8192e/rtl819x_TSProc.c

index 75ee2056d3610d6051302483113548c4eeeedf4f..0e851d4221a735109939bd9a3d7d8687fdf5960a 100644 (file)
@@ -19,7 +19,6 @@ enum tr_select {
 
 struct ts_common_info {
        struct list_head                List;
-       struct timer_list               InactTimer;
        u8                              Addr[ETH_ALEN];
        union tspec_body TSpec;
        union qos_tclas TClass[TCLAS_NUM];
index ed124f85c2b1abb25319df970d45b0cb5d76aa50..7fff20b185f0fa1d9976c7bde70beddb747a9eb0 100644 (file)
@@ -8,10 +8,6 @@
 #include <linux/etherdevice.h>
 #include "rtl819x_TS.h"
 
-static void TsInactTimeout(struct timer_list *unused)
-{
-}
-
 static void RxPktPendingTimeout(struct timer_list *t)
 {
        struct rx_ts_record *pRxTs = from_timer(pRxTs, t,
@@ -138,9 +134,6 @@ void TSInitialize(struct rtllib_device *ieee)
 
        for (count = 0; count < TOTAL_TS_NUM; count++) {
                pTxTS->num = count;
-               timer_setup(&pTxTS->TsCommonInfo.InactTimer, TsInactTimeout,
-                           0);
-
                timer_setup(&pTxTS->TsAddBaTimer, TsAddBaProcess, 0);
 
                timer_setup(&pTxTS->TxPendingBARecord.timer, BaSetupTimeOut,
@@ -160,10 +153,6 @@ void TSInitialize(struct rtllib_device *ieee)
        for (count = 0; count < TOTAL_TS_NUM; count++) {
                pRxTS->num = count;
                INIT_LIST_HEAD(&pRxTS->rx_pending_pkt_list);
-
-               timer_setup(&pRxTS->ts_common_info.InactTimer, TsInactTimeout,
-                           0);
-
                timer_setup(&pRxTS->rx_admitted_ba_record.timer,
                            RxBaInactTimeout, 0);
 
@@ -187,7 +176,6 @@ void TSInitialize(struct rtllib_device *ieee)
 static void AdmitTS(struct rtllib_device *ieee,
                    struct ts_common_info *pTsCommonInfo, u32 InactTime)
 {
-       del_timer_sync(&pTsCommonInfo->InactTimer);
 }
 
 static struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee,
@@ -379,7 +367,6 @@ bool GetTs(struct rtllib_device *ieee, struct ts_common_info **ppTS,
 static void RemoveTsEntry(struct rtllib_device *ieee,
                          struct ts_common_info *pTs, enum tr_select TxRxSelect)
 {
-       del_timer_sync(&pTs->InactTimer);
        TsInitDelBA(ieee, pTs, TxRxSelect);
 
        if (TxRxSelect == RX_DIR) {