diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2014-07-13 10:42:48 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-13 12:22:34 -0700 |
commit | 2cd98cd5b83282d2317a410dd6a2e2aaf963787d (patch) | |
tree | b05785e38df4f302ea0d181cc23649fd1627ec64 | |
parent | 60cecd2857b26a38c3342a71489b83e61da2ed86 (diff) |
staging: vt6656: rename vCommandTimerWait to vnt_cmd_timer_wait
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vt6656/wcmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/wcmd.c b/drivers/staging/vt6656/wcmd.c index 8c5a0e854492..87e682ddd8e4 100644 --- a/drivers/staging/vt6656/wcmd.c +++ b/drivers/staging/vt6656/wcmd.c @@ -31,7 +31,7 @@ * vnt_cmd_complete - Command Complete function * bScheduleCommand - Push Command and wait Command Scheduler to do * 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 * * Revision History: @@ -49,7 +49,7 @@ #include "rf.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)); } @@ -99,7 +99,7 @@ static int vnt_cmd_complete(struct vnt_private *priv) break; } - vCommandTimerWait(priv, 0); + vnt_cmd_timer_wait(priv, 0); return true; } |