Browse Source

staging: vt6656: CARDbClearCurrentTSF remove camel case

pDevice -> priv

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Malcolm Priestley 11 years ago
parent
commit
e151e478fd
1 changed files with 4 additions and 4 deletions
  1. 4 4
      drivers/staging/vt6656/card.c

+ 4 - 4
drivers/staging/vt6656/card.c

@@ -636,17 +636,17 @@ bool CARDbGetCurrentTSF(struct vnt_private *priv, u64 *current_tsf)
  *
  *
  * Parameters:
  * Parameters:
  *  In:
  *  In:
- *      pDevice         - The adapter to be read
+ *      priv	- The adapter to be read
  *
  *
  * Return Value: true if success; otherwise false
  * 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;
 	return true;
 }
 }