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

staging: vt6656: vCommandTimerWait remove camel case.

camel case changes
pDevice -> priv
MSecond -> msecs
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 913827ee
...@@ -54,11 +54,9 @@ static int msglevel = MSG_LEVEL_INFO; ...@@ -54,11 +54,9 @@ static int msglevel = MSG_LEVEL_INFO;
static int s_bCommandComplete(struct vnt_private *); static int s_bCommandComplete(struct vnt_private *);
static void static void vCommandTimerWait(struct vnt_private *priv, unsigned long msecs)
vCommandTimerWait(struct vnt_private *pDevice, unsigned long MSecond)
{ {
schedule_delayed_work(&pDevice->run_command_work, schedule_delayed_work(&priv->run_command_work, msecs_to_jiffies(msecs));
msecs_to_jiffies(MSecond));
} }
void vRunCommand(struct work_struct *work) void vRunCommand(struct work_struct *work)
......
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