Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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;
}