Commit 4e3af0fa authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: vResetCommandTimer remove camel case

pDevice -> priv
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f7e9ed41
...@@ -207,12 +207,12 @@ int bScheduleCommand(struct vnt_private *priv, CMD_CODE command, u8 *item0) ...@@ -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; priv->cbFreeCmdQueue = CMD_Q_SIZE;
pDevice->uCmdDequeueIdx = 0; priv->uCmdDequeueIdx = 0;
pDevice->uCmdEnqueueIdx = 0; priv->uCmdEnqueueIdx = 0;
pDevice->eCommandState = WLAN_CMD_IDLE; priv->eCommandState = WLAN_CMD_IDLE;
pDevice->bCmdRunning = false; priv->bCmdRunning = false;
pDevice->bCmdClear = false; priv->bCmdClear = false;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment