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

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

index 4b0b3efd56baf3c25b11a4f8234e2e6a8a7417a2..b904b2011e8069ba4f221f226587c18361eecb51 100644 (file)
@@ -615,17 +615,17 @@ void CARDvAdjustTSF(struct vnt_private *priv, u8 rx_rate,
  *
  * Parameters:
  *  In:
- *      pDevice         - The adapter to be read
+ *     priv            - The adapter to be read
  *  Out:
- *      qwCurrTSF       - Current TSF counter
+ *     current_tsf     - Current TSF counter
  *
  * Return Value: true if success; otherwise false
  *
  */
-bool CARDbGetCurrentTSF(struct vnt_private *pDevice, u64 *pqwCurrTSF)
+bool CARDbGetCurrentTSF(struct vnt_private *priv, u64 *current_tsf)
 {
 
-       *pqwCurrTSF = pDevice->qwCurrTSF;
+       *current_tsf = priv->qwCurrTSF;
 
        return true;
 }