From: Malcolm Priestley Date: Sat, 24 May 2014 13:37:03 +0000 (+0100) Subject: staging: vt6656: CARDbClearCurrentTSF remove camel case X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e151e478fdebfc890195ec472b5bf030612430ce;p=deliverable%2Flinux.git staging: vt6656: CARDbClearCurrentTSF remove camel case pDevice -> priv Signed-off-by: Malcolm Priestley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6656/card.c b/drivers/staging/vt6656/card.c index b904b2011e80..bb06f59e37b7 100644 --- a/drivers/staging/vt6656/card.c +++ b/drivers/staging/vt6656/card.c @@ -636,17 +636,17 @@ bool CARDbGetCurrentTSF(struct vnt_private *priv, u64 *current_tsf) * * Parameters: * In: - * pDevice - The adapter to be read + * priv - The adapter to be read * * Return Value: true if success; otherwise false * */ -bool CARDbClearCurrentTSF(struct vnt_private *pDevice) +bool CARDbClearCurrentTSF(struct vnt_private *priv) { - MACvRegBitsOn(pDevice, MAC_REG_TFTCTL, TFTCTL_TSFCNTRST); + MACvRegBitsOn(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTRST); - pDevice->qwCurrTSF = 0; + priv->qwCurrTSF = 0; return true; }