Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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)