staging: r8188eu: rename rtl8188e_init_dm_priv to rtw_hal_dm_init
And remove two one-line wrappers. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f86fc9b0b6
commit
a5c2587435
|
@ -25,12 +25,6 @@ void rtw_hal_free_data(struct adapter *adapt)
|
|||
adapt->HalFunc.free_hal_data(adapt);
|
||||
}
|
||||
|
||||
void rtw_hal_dm_init(struct adapter *adapt)
|
||||
{
|
||||
if (adapt->HalFunc.dm_init)
|
||||
adapt->HalFunc.dm_init(adapt);
|
||||
}
|
||||
|
||||
uint rtw_hal_init(struct adapter *adapt)
|
||||
{
|
||||
uint status = _SUCCESS;
|
||||
|
|
|
@ -174,7 +174,7 @@ skip_dm:
|
|||
return;
|
||||
}
|
||||
|
||||
void rtl8188e_init_dm_priv(struct adapter *Adapter)
|
||||
void rtw_hal_dm_init(struct adapter *Adapter)
|
||||
{
|
||||
struct hal_data_8188e *hal_data = GET_HAL_DATA(Adapter);
|
||||
struct dm_priv *pdmpriv = &hal_data->dmpriv;
|
||||
|
|
|
@ -188,8 +188,6 @@ void rtw_hal_notch_filter(struct adapter *adapter, bool enable)
|
|||
void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
{
|
||||
pHalFunc->free_hal_data = &rtl8188e_free_hal_data;
|
||||
|
||||
pHalFunc->dm_init = &rtl8188e_init_dm_priv;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
|
|
@ -142,8 +142,6 @@ enum hal_intf_ps_func {
|
|||
struct hal_ops {
|
||||
void (*free_hal_data)(struct adapter *padapter);
|
||||
|
||||
void (*dm_init)(struct adapter *padapter);
|
||||
|
||||
s32 (*interrupt_handler)(struct adapter *padapter);
|
||||
|
||||
void (*hal_reset_security_engine)(struct adapter *adapter);
|
||||
|
|
|
@ -45,7 +45,6 @@ struct dm_priv {
|
|||
u8 PowerIndex_backup[6];
|
||||
};
|
||||
|
||||
void rtl8188e_init_dm_priv(struct adapter *adapt);
|
||||
void rtl8188e_InitHalDm(struct adapter *adapt);
|
||||
|
||||
void AntDivCompare8188E(struct adapter *adapt, struct wlan_bssid_ex *dst,
|
||||
|
|
Loading…
Reference in New Issue