staging: rtl8192e: Remove macro IS_HARDWARE_TYPE_8192SE
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Fri, 7 Apr 2023 21:50:21 +0000 (23:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Apr 2023 16:03:59 +0000 (18:03 +0200)
Remove unused macro IS_HARDWARE_TYPE_8192SE as it is used only in code
areas that are not executed when 8192SE hardware is found.

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

index 2b2d8af..b0aa765 100644 (file)
@@ -52,9 +52,6 @@
 #define DRV_AUTHOR  "<wlanfae@realtek.com>"
 #define DRV_VERSION  "0014.0401.2010"
 
-#define IS_HARDWARE_TYPE_8192SE(_priv)         \
-       (((struct r8192_priv *)rtllib_priv(dev))->card_8192 == NIC_8192SE)
-
 #define TOTAL_CAM_ENTRY                32
 #define CAM_CONTENT_COUNT      8
 
index cde4111..50486f2 100644 (file)
@@ -214,8 +214,6 @@ void rtl92e_dm_init(struct net_device *dev)
        _rtl92e_dm_init_fsync(dev);
        _rtl92e_dm_init_rx_path_selection(dev);
        _rtl92e_dm_init_cts_to_self(dev);
-       if (IS_HARDWARE_TYPE_8192SE(dev))
-               _rtl92e_dm_init_wa_broadcom_iot(dev);
 
        INIT_DELAYED_WORK(&priv->gpio_change_rf_wq, (void *)_rtl92e_dm_check_rf_ctrl_gpio);
 }
@@ -816,10 +814,7 @@ static void _rtl92e_dm_check_tx_power_tracking_thermal(struct net_device *dev)
        static u8       TM_Trigger;
        u8              TxPowerCheckCnt = 0;
 
-       if (IS_HARDWARE_TYPE_8192SE(dev))
-               TxPowerCheckCnt = 5;
-       else
-               TxPowerCheckCnt = 2;
+       TxPowerCheckCnt = 2;
        if (!priv->btxpower_tracking)
                return;