staging: vt6656: vCommandTimerWait remove camel case.
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 12 Jul 2014 06:53:39 +0000 (07:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Jul 2014 20:20:14 +0000 (13:20 -0700)
camel case changes
pDevice -> priv
MSecond -> msecs

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/wcmd.c

index b62726f29c5316a986d1efb30ce57cc31b2abd94..2553cde8a16c819ec01ccbd840dc9c2c52c1432e 100644 (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)