]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: vt6656: vResetCommandTimer remove camel case
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 12 Jul 2014 06:53:47 +0000 (07:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Jul 2014 20:20:14 +0000 (13:20 -0700)
pDevice -> priv

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

index 76e7f78e179e691a10a54c8c457a1c1e48c7e164..9130f146e11216cdd08208a27d2beae197e593db 100644 (file)
@@ -207,12 +207,12 @@ int bScheduleCommand(struct vnt_private *priv, CMD_CODE command, u8 *item0)
 
 }
 
-void vResetCommandTimer(struct vnt_private *pDevice)
+void vResetCommandTimer(struct vnt_private *priv)
 {
-       pDevice->cbFreeCmdQueue = CMD_Q_SIZE;
-       pDevice->uCmdDequeueIdx = 0;
-       pDevice->uCmdEnqueueIdx = 0;
-       pDevice->eCommandState = WLAN_CMD_IDLE;
-       pDevice->bCmdRunning = false;
-       pDevice->bCmdClear = false;
+       priv->cbFreeCmdQueue = CMD_Q_SIZE;
+       priv->uCmdDequeueIdx = 0;
+       priv->uCmdEnqueueIdx = 0;
+       priv->eCommandState = WLAN_CMD_IDLE;
+       priv->bCmdRunning = false;
+       priv->bCmdClear = false;
 }