0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef __USB_OSINTF_H
0015 #define __USB_OSINTF_H
0016
0017 #include "osdep_service.h"
0018 #include "drv_types.h"
0019
0020 extern char *r8712_initmac;
0021
0022 unsigned int r8712_usb_inirp_init(struct _adapter *padapter);
0023 unsigned int r8712_usb_inirp_deinit(struct _adapter *padapter);
0024 uint rtl871x_hal_init(struct _adapter *padapter);
0025 uint rtl8712_hal_deinit(struct _adapter *padapter);
0026
0027 void rtl871x_intf_stop(struct _adapter *padapter);
0028 void r871x_dev_unload(struct _adapter *padapter);
0029 void r8712_stop_drv_threads(struct _adapter *padapter);
0030 void r8712_stop_drv_timers(struct _adapter *padapter);
0031 int r8712_init_drv_sw(struct _adapter *padapter);
0032 void r8712_free_drv_sw(struct _adapter *padapter);
0033 struct net_device *r8712_init_netdev(void);
0034
0035 #endif