mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 07:29:40 +00:00
rtl8188eu: Convert typedef statements in include/usb_vendor_req.h
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
0ce4977846
commit
15888962e2
2 changed files with 5 additions and 7 deletions
|
@ -29,7 +29,7 @@ extern int rtw_mc2u_disable;
|
|||
|
||||
#define USBD_HALTED(Status) ((ULONG)(Status) >> 30 == 3)
|
||||
|
||||
u8 usbvendorrequest(struct dvobj_priv *pdvobjpriv, RT_USB_BREQUEST brequest, RT_USB_WVALUE wvalue, u8 windex, void* data, u8 datalen, u8 isdirectionin);
|
||||
u8 usbvendorrequest(struct dvobj_priv *pdvobjpriv, enum bt_usb_request brequest, enum rt_usb_wvalue wvalue, u8 windex, void* data, u8 datalen, u8 isdirectionin);
|
||||
int pm_netdev_open(struct net_device *pnetdev,u8 bnormal);
|
||||
void netdev_br_init(struct net_device *netdev);
|
||||
void dhcp_flag_bcast(_adapter *priv, struct sk_buff *skb);
|
||||
|
|
|
@ -34,21 +34,19 @@
|
|||
#define RT_USB_SYSCLK_60MHZ 2
|
||||
|
||||
|
||||
typedef enum _RT_USB_BREQUEST {
|
||||
enum bt_usb_request {
|
||||
RT_USB_SET_REGISTER = 1,
|
||||
RT_USB_SET_SYSCLK = 2,
|
||||
RT_USB_GET_SYSCLK = 3,
|
||||
RT_USB_GET_REGISTER = 4
|
||||
} RT_USB_BREQUEST;
|
||||
};
|
||||
|
||||
|
||||
typedef enum _RT_USB_WVALUE {
|
||||
enum rt_usb_wvalue {
|
||||
RT_USB_RESET_MASK = 1,
|
||||
RT_USB_SLEEP_MASK = 2,
|
||||
RT_USB_USB_HRCPWM = 3,
|
||||
RT_USB_LDO = 4,
|
||||
RT_USB_BOOT_TYPE = 5
|
||||
} RT_USB_WVALUE;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue