staging: vt6656: CARDbClearCurrentTSF remove camel case
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 24 May 2014 13:37:03 +0000 (14:37 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 May 2014 17:58:25 +0000 (10:58 -0700)
pDevice -> priv

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/card.c

index b904b2011e8069ba4f221f226587c18361eecb51..bb06f59e37b73d46eed204f8ee62b8ee1f7ea424 100644 (file)
@@ -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;
 }