Commit 2cd98cd5 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: rename vCommandTimerWait to vnt_cmd_timer_wait

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 60cecd28
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
* vnt_cmd_complete - Command Complete function * vnt_cmd_complete - Command Complete function
* bScheduleCommand - Push Command and wait Command Scheduler to do * bScheduleCommand - Push Command and wait Command Scheduler to do
* vCommandTimer- Command call back functions * vCommandTimer- Command call back functions
* vCommandTimerWait- Call back timer * vnt_cmd_timer_wait- Call back timer
* s_bClearBSSID_SCAN- Clear BSSID_SCAN cmd in CMD Queue * s_bClearBSSID_SCAN- Clear BSSID_SCAN cmd in CMD Queue
* *
* Revision History: * Revision History:
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
#include "rf.h" #include "rf.h"
#include "channel.h" #include "channel.h"
static void vCommandTimerWait(struct vnt_private *priv, unsigned long msecs) static void vnt_cmd_timer_wait(struct vnt_private *priv, unsigned long msecs)
{ {
schedule_delayed_work(&priv->run_command_work, msecs_to_jiffies(msecs)); schedule_delayed_work(&priv->run_command_work, msecs_to_jiffies(msecs));
} }
...@@ -99,7 +99,7 @@ static int vnt_cmd_complete(struct vnt_private *priv) ...@@ -99,7 +99,7 @@ static int vnt_cmd_complete(struct vnt_private *priv)
break; break;
} }
vCommandTimerWait(priv, 0); vnt_cmd_timer_wait(priv, 0);
return true; return true;
} }
......
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