mirror of https://gitee.com/openkylin/linux.git
staging:r8188eu: remove wrappers for rtw_hal_inirp_init function
There is no reason to use these wrappers. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bb5cd2e531
commit
4f1ca4d093
|
@ -156,7 +156,6 @@ struct adapter {
|
|||
u8 hw_init_completed;
|
||||
|
||||
void *cmdThread;
|
||||
void (*intf_start)(struct adapter *adapter);
|
||||
void (*intf_stop)(struct adapter *adapter);
|
||||
struct net_device *pnetdev;
|
||||
struct net_device *pmondev;
|
||||
|
|
|
@ -596,8 +596,7 @@ static int _netdev_open(struct net_device *pnetdev)
|
|||
pr_info("can't init mlme_ext_priv\n");
|
||||
goto netdev_open_error;
|
||||
}
|
||||
if (padapter->intf_start)
|
||||
padapter->intf_start(padapter);
|
||||
rtw_hal_inirp_init(padapter);
|
||||
|
||||
rtw_led_control(padapter, LED_CTL_NO_LINK);
|
||||
|
||||
|
@ -658,8 +657,7 @@ static int ips_netdrv_open(struct adapter *padapter)
|
|||
goto netdev_open_error;
|
||||
}
|
||||
|
||||
if (padapter->intf_start)
|
||||
padapter->intf_start(padapter);
|
||||
rtw_hal_inirp_init(padapter);
|
||||
|
||||
rtw_set_pwr_state_check_timer(&padapter->pwrctrlpriv);
|
||||
mod_timer(&padapter->mlmepriv.dynamic_chk_timer,
|
||||
|
|
|
@ -141,15 +141,6 @@ static void usb_dvobj_deinit(struct usb_interface *usb_intf)
|
|||
|
||||
}
|
||||
|
||||
static void usb_intf_start(struct adapter *padapter)
|
||||
{
|
||||
RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("+usb_intf_start\n"));
|
||||
|
||||
rtw_hal_inirp_init(padapter);
|
||||
|
||||
RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("-usb_intf_start\n"));
|
||||
}
|
||||
|
||||
static void usb_intf_stop(struct adapter *padapter)
|
||||
{
|
||||
RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("+usb_intf_stop\n"));
|
||||
|
@ -366,7 +357,6 @@ static struct adapter *rtw_usb_if1_init(struct dvobj_priv *dvobj,
|
|||
if (!padapter->HalData)
|
||||
DBG_88E("cant not alloc memory for HAL DATA\n");
|
||||
|
||||
padapter->intf_start = &usb_intf_start;
|
||||
padapter->intf_stop = &usb_intf_stop;
|
||||
|
||||
/* step read_chip_version */
|
||||
|
|
Loading…
Reference in New Issue