mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
staging: r8188eu: remove InitSwLeds from hal_ops
Remove InitSwLeds from hal_ops and remove its wrapper rtw_hal_sw_led_init(). Call rtl8188eu_InitSwLeds() directly instead. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20210906190223.11396-2-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d3ede18eeb
commit
16dfd0e209
@@ -25,12 +25,6 @@ void rtw_hal_dm_deinit(struct adapter *adapt)
|
||||
adapt->HalFunc.dm_deinit(adapt);
|
||||
}
|
||||
|
||||
void rtw_hal_sw_led_init(struct adapter *adapt)
|
||||
{
|
||||
if (adapt->HalFunc.InitSwLeds)
|
||||
adapt->HalFunc.InitSwLeds(adapt);
|
||||
}
|
||||
|
||||
void rtw_hal_sw_led_deinit(struct adapter *adapt)
|
||||
{
|
||||
if (adapt->HalFunc.DeInitSwLeds)
|
||||
|
||||
@@ -2246,7 +2246,6 @@ void rtl8188eu_set_hal_ops(struct adapter *adapt)
|
||||
|
||||
halfunc->init_recv_priv = &rtl8188eu_init_recv_priv;
|
||||
halfunc->free_recv_priv = &rtl8188eu_free_recv_priv;
|
||||
halfunc->InitSwLeds = &rtl8188eu_InitSwLeds;
|
||||
halfunc->DeInitSwLeds = &rtl8188eu_DeInitSwLeds;
|
||||
|
||||
halfunc->SetHwRegHandler = &SetHwReg8188EU;
|
||||
|
||||
@@ -143,7 +143,6 @@ struct hal_ops {
|
||||
s32 (*init_recv_priv)(struct adapter *padapter);
|
||||
void (*free_recv_priv)(struct adapter *padapter);
|
||||
|
||||
void (*InitSwLeds)(struct adapter *padapter);
|
||||
void (*DeInitSwLeds)(struct adapter *padapter);
|
||||
|
||||
void (*dm_init)(struct adapter *padapter);
|
||||
@@ -256,7 +255,6 @@ void rtw_hal_free_data(struct adapter *padapter);
|
||||
|
||||
void rtw_hal_dm_init(struct adapter *padapter);
|
||||
void rtw_hal_dm_deinit(struct adapter *padapter);
|
||||
void rtw_hal_sw_led_init(struct adapter *padapter);
|
||||
void rtw_hal_sw_led_deinit(struct adapter *padapter);
|
||||
|
||||
u32 rtw_hal_power_on(struct adapter *padapter);
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
#include "../include/rtw_mp_ioctl.h"
|
||||
#include "../include/usb_ops.h"
|
||||
#include "../include/rtl8188e_hal.h"
|
||||
#include "../include/rtl8188e_led.h"
|
||||
|
||||
#include "../include/rtw_mp.h"
|
||||
#include "../include/rtw_iol.h"
|
||||
@@ -3845,7 +3846,7 @@ static int rtw_rereg_nd_name(struct net_device *dev,
|
||||
|
||||
if (!memcmp(rereg_priv->old_ifname, "disable%d", 9)) {
|
||||
padapter->ledpriv.bRegUseLed = rereg_priv->old_bRegUseLed;
|
||||
rtw_hal_sw_led_init(padapter);
|
||||
rtl8188eu_InitSwLeds(padapter);
|
||||
rtw_ips_mode_req(&padapter->pwrctrlpriv, rereg_priv->old_ips_mode);
|
||||
}
|
||||
|
||||
|
||||
@@ -9,9 +9,9 @@
|
||||
#include "../include/recv_osdep.h"
|
||||
#include "../include/hal_intf.h"
|
||||
#include "../include/rtw_ioctl.h"
|
||||
|
||||
#include "../include/usb_osintf.h"
|
||||
#include "../include/rtw_br_ext.h"
|
||||
#include "../include/rtl8188e_led.h"
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("Realtek Wireless Lan Driver");
|
||||
@@ -887,7 +887,7 @@ u8 rtw_init_drv_sw(struct adapter *padapter)
|
||||
ret8 = rtw_init_default_value(padapter);
|
||||
|
||||
rtw_hal_dm_init(padapter);
|
||||
rtw_hal_sw_led_init(padapter);
|
||||
rtl8188eu_InitSwLeds(padapter);
|
||||
|
||||
rtw_hal_sreset_init(padapter);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user