rtl8188eu: Replace typedefs related to threads with standard kernel types

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-24 12:47:20 -05:00
parent 2685b52404
commit dfb5277a29
6 changed files with 9 additions and 14 deletions

View file

@ -295,10 +295,10 @@ struct _ADAPTER{
u8 init_adpt_in_progress;
u8 bHaltInProgress;
_thread_hdl_ cmdThread;
_thread_hdl_ evtThread;
_thread_hdl_ xmitThread;
_thread_hdl_ recvThread;
void *cmdThread;
void *evtThread;
void *xmitThread;
void *recvThread;
void (*intf_start)(_adapter * adapter);
void (*intf_stop)(_adapter * adapter);
_nic_hdl pnetdev;