staging: vt6656: vCommandTimerWait remove camel case.

camel case changes
pDevice -> priv
MSecond -> msecs

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley
2014-07-12 07:53:39 +01:00
committed by Greg Kroah-Hartman
parent 913827ee9a
commit e30546d6aa

View File

@@ -54,11 +54,9 @@ static int msglevel = MSG_LEVEL_INFO;
static int s_bCommandComplete(struct vnt_private *);
static void
vCommandTimerWait(struct vnt_private *pDevice, unsigned long MSecond)
static void vCommandTimerWait(struct vnt_private *priv, unsigned long msecs)
{
schedule_delayed_work(&pDevice->run_command_work,
msecs_to_jiffies(MSecond));
schedule_delayed_work(&priv->run_command_work, msecs_to_jiffies(msecs));
}
void vRunCommand(struct work_struct *work)