staging: vt6656: vResetCommandTimer remove camel case

pDevice -> priv

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-12 07:53:47 +01:00 committed by Greg Kroah-Hartman
parent f7e9ed41c9
commit 4e3af0fa67
1 changed files with 7 additions and 7 deletions

View 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;
}