Commit 02d0de1f authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman

staging: r8188eu: rename rtl8188eu_InitSwLeds to rtw_hal_sw_led_init

And remove two one-line wrappers.
Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d435335f
...@@ -37,12 +37,6 @@ void rtw_hal_dm_init(struct adapter *adapt) ...@@ -37,12 +37,6 @@ void rtw_hal_dm_init(struct adapter *adapt)
adapt->HalFunc.dm_init(adapt); adapt->HalFunc.dm_init(adapt);
} }
void rtw_hal_sw_led_init(struct adapter *adapt)
{
if (adapt->HalFunc.InitSwLeds)
adapt->HalFunc.InitSwLeds(adapt);
}
u32 rtw_hal_power_on(struct adapter *adapt) u32 rtw_hal_power_on(struct adapter *adapt)
{ {
if (adapt->HalFunc.hal_power_on) if (adapt->HalFunc.hal_power_on)
......
...@@ -66,7 +66,7 @@ void SwLedOff(struct adapter *padapter, struct LED_871x *pLed) ...@@ -66,7 +66,7 @@ void SwLedOff(struct adapter *padapter, struct LED_871x *pLed)
/* Description: */ /* Description: */
/* Initialize all LED_871x objects. */ /* Initialize all LED_871x objects. */
void rtl8188eu_InitSwLeds(struct adapter *padapter) void rtw_hal_sw_led_init(struct adapter *padapter)
{ {
struct led_priv *pledpriv = &(padapter->ledpriv); struct led_priv *pledpriv = &(padapter->ledpriv);
struct hal_data_8188e *haldata = GET_HAL_DATA(padapter); struct hal_data_8188e *haldata = GET_HAL_DATA(padapter);
......
...@@ -2072,7 +2072,6 @@ void rtl8188eu_set_hal_ops(struct adapter *adapt) ...@@ -2072,7 +2072,6 @@ void rtl8188eu_set_hal_ops(struct adapter *adapt)
halfunc->init_recv_priv = &rtl8188eu_init_recv_priv; halfunc->init_recv_priv = &rtl8188eu_init_recv_priv;
halfunc->free_recv_priv = &rtl8188eu_free_recv_priv; halfunc->free_recv_priv = &rtl8188eu_free_recv_priv;
halfunc->InitSwLeds = &rtl8188eu_InitSwLeds;
rtl8188e_set_hal_ops(halfunc); rtl8188e_set_hal_ops(halfunc);
} }
...@@ -154,8 +154,6 @@ struct hal_ops { ...@@ -154,8 +154,6 @@ struct hal_ops {
s32 (*init_recv_priv)(struct adapter *padapter); s32 (*init_recv_priv)(struct adapter *padapter);
void (*free_recv_priv)(struct adapter *padapter); void (*free_recv_priv)(struct adapter *padapter);
void (*InitSwLeds)(struct adapter *padapter);
void (*dm_init)(struct adapter *padapter); void (*dm_init)(struct adapter *padapter);
void (*read_chip_version)(struct adapter *padapter); void (*read_chip_version)(struct adapter *padapter);
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
/* */ /* */
/* Interface to manipulate LED objects. */ /* Interface to manipulate LED objects. */
/* */ /* */
void rtl8188eu_InitSwLeds(struct adapter *padapter);
void SwLedOn(struct adapter *padapter, struct LED_871x *pLed); void SwLedOn(struct adapter *padapter, struct LED_871x *pLed);
void SwLedOff(struct adapter *padapter, struct LED_871x *pLed); void SwLedOff(struct adapter *padapter, struct LED_871x *pLed);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment