Commit 4680f158 authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman

staging: rtl8188eu: Rename _rtw_dequeue_cmd() to rtw_dequeue_cmd()

Signed-off-by: default avatarnavin patidar <navin.patidar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 11431bdb
...@@ -110,7 +110,7 @@ int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj) ...@@ -110,7 +110,7 @@ int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj)
return _SUCCESS; return _SUCCESS;
} }
struct cmd_obj *_rtw_dequeue_cmd(struct __queue *queue) struct cmd_obj * rtw_dequeue_cmd(struct __queue *queue)
{ {
unsigned long irqL; unsigned long irqL;
struct cmd_obj *obj; struct cmd_obj *obj;
...@@ -181,16 +181,6 @@ u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj) ...@@ -181,16 +181,6 @@ u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *cmd_obj)
return res; return res;
} }
struct cmd_obj *rtw_dequeue_cmd(struct cmd_priv *pcmdpriv)
{
struct cmd_obj *cmd_obj;
cmd_obj = _rtw_dequeue_cmd(&pcmdpriv->cmd_queue);
return cmd_obj;
}
void rtw_free_cmd_obj(struct cmd_obj *pcmd) void rtw_free_cmd_obj(struct cmd_obj *pcmd)
{ {
...@@ -248,7 +238,7 @@ int rtw_cmd_thread(void *context) ...@@ -248,7 +238,7 @@ int rtw_cmd_thread(void *context)
break; break;
} }
pcmd = rtw_dequeue_cmd(pcmdpriv); pcmd = rtw_dequeue_cmd(&pcmdpriv->cmd_queue);
if (!pcmd) if (!pcmd)
continue; continue;
...@@ -304,7 +294,7 @@ int rtw_cmd_thread(void *context) ...@@ -304,7 +294,7 @@ int rtw_cmd_thread(void *context)
/* free all cmd_obj resources */ /* free all cmd_obj resources */
do { do {
pcmd = rtw_dequeue_cmd(pcmdpriv); pcmd = rtw_dequeue_cmd(&pcmdpriv->cmd_queue);
if (pcmd == NULL) if (pcmd == NULL)
break; break;
......
...@@ -70,7 +70,7 @@ do {\ ...@@ -70,7 +70,7 @@ do {\
} while (0) } while (0)
u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *obj); u32 rtw_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *obj);
struct cmd_obj *rtw_dequeue_cmd(struct cmd_priv *pcmdpriv); struct cmd_obj *rtw_dequeue_cmd(struct __queue *queue);
void rtw_free_cmd_obj(struct cmd_obj *pcmd); void rtw_free_cmd_obj(struct cmd_obj *pcmd);
int rtw_cmd_thread(void *context); int rtw_cmd_thread(void *context);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment