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

@ -336,7 +336,7 @@ _func_enter_;
_func_exit_;
}
thread_return rtw_cmd_thread(thread_context context)
int rtw_cmd_thread(void *context)
{
u8 ret;
struct cmd_obj *pcmd;

View file

@ -737,7 +737,7 @@ static struct xmit_frame *alloc_mp_xmitframe(struct xmit_priv *pxmitpriv)
}
static thread_return mp_xmit_packet_thread(thread_context context)
static int mp_xmit_packet_thread(void *context)
{
struct xmit_frame *pxmitframe;
struct mp_tx *pmptx;