staging: rtl8192e: Remove macro IS_HARDWARE_TYPE_8192SE
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>
This commit is contained in:
Родитель
ffc5e1f358
Коммит
748b5db6a9
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче