staging: rtl8192e: Remove undefined function UpdateBeaconInterruptHandler
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Sat, 13 May 2023 18:09:34 +0000 (20:09 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 28 May 2023 09:11:12 +0000 (10:11 +0100)
Remove function UpdateBeaconInterruptHandler as it is not defined.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/7cc71096fb1e6fee755dd96de0095ef1fb6d51e1.1683960685.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_core.c
drivers/staging/rtl8192e/rtllib.h
drivers/staging/rtl8192e/rtllib_softmac.c

index 3f8a58e..5fdee7b 100644 (file)
@@ -739,8 +739,6 @@ static void _rtl92e_init_priv_handler(struct net_device *dev)
        priv->rtllib->rtllib_ips_leave = rtl92e_rtllib_ips_leave;
 
        priv->rtllib->LedControlHandler = NULL;
-       priv->rtllib->UpdateBeaconInterruptHandler = NULL;
-
        priv->rtllib->ScanOperationBackupHandler = rtl92e_scan_op_backup;
 }
 
index 6c1f563..8bafee3 100644 (file)
@@ -1714,8 +1714,6 @@ struct rtllib_device {
        bool (*GetHalfNmodeSupportByAPsHandler)(struct net_device *dev);
        u8   (*rtllib_ap_sec_type)(struct rtllib_device *ieee);
        void (*InitialGainHandler)(struct net_device *dev, u8 Operation);
-       void (*UpdateBeaconInterruptHandler)(struct net_device *dev,
-                                            bool start);
        void (*ScanOperationBackupHandler)(struct net_device *dev,
                                           u8 Operation);
        void (*LedControlHandler)(struct net_device *dev,
index bb28414..1fe0675 100644 (file)
@@ -2882,9 +2882,6 @@ void rtllib_start_protocol(struct rtllib_device *ieee)
                ieee->last_packet_time[i] = 0;
        }
 
-       if (ieee->UpdateBeaconInterruptHandler)
-               ieee->UpdateBeaconInterruptHandler(ieee->dev, false);
-
        ieee->wmm_acm = 0;
        /* if the user set the MAC of the ad-hoc cell and then
         * switch to managed mode, shall we  make sure that association
@@ -2894,9 +2891,6 @@ void rtllib_start_protocol(struct rtllib_device *ieee)
        if (ieee->iw_mode == IW_MODE_INFRA) {
                rtllib_start_bss(ieee);
        } else if (ieee->iw_mode == IW_MODE_ADHOC) {
-               if (ieee->UpdateBeaconInterruptHandler)
-                       ieee->UpdateBeaconInterruptHandler(ieee->dev, true);
-
                rtllib_start_ibss(ieee);
 
        } else if (ieee->iw_mode == IW_MODE_MASTER) {