mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-09 14:53:05 +00:00
rtl8188eu: Convert typedef for _mutex to struct mutex
This will break builds for kernels before mutexes were introduced. As this is very early, it should not affect any modern users. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
dfb5277a29
commit
73f9c27ffd
7 changed files with 12 additions and 17 deletions
|
@ -205,7 +205,7 @@ struct dvobj_priv
|
|||
int ep_num[5]; //endpoint number
|
||||
int RegUsbSS;
|
||||
_sema usb_suspend_sema;
|
||||
_mutex usb_vendor_req_mutex;
|
||||
struct mutex usb_vendor_req_mutex;
|
||||
|
||||
u8 * usb_alloc_vendor_req_buf;
|
||||
u8 * usb_vendor_req_buf;
|
||||
|
@ -332,7 +332,7 @@ struct _ADAPTER{
|
|||
#endif
|
||||
_adapter *pbuddy_adapter;
|
||||
|
||||
_mutex *hw_init_mutex;
|
||||
struct mutex *hw_init_mutex;
|
||||
|
||||
_lock br_ext_lock;
|
||||
struct nat25_network_db_entry *nethash[NAT25_HASH_SIZE];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue