mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 13:29:17 -04:00
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:
committed by
Greg Kroah-Hartman
parent
913827ee9a
commit
e30546d6aa
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user