From: Malcolm Priestley Date: Sat, 12 Jul 2014 06:53:47 +0000 (+0100) Subject: staging: vt6656: vResetCommandTimer remove camel case X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4e3af0fa6779c2779ad56575e7f5e965d2c30c07;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git staging: vt6656: vResetCommandTimer remove camel case pDevice -> priv Signed-off-by: Malcolm Priestley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6656/wcmd.c b/drivers/staging/vt6656/wcmd.c index 76e7f78e179e..9130f146e112 100644 --- a/drivers/staging/vt6656/wcmd.c +++ b/drivers/staging/vt6656/wcmd.c @@ -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; }