staging: vt6656: CARDbGetCurrentTSF remove camel case

pDevice -> priv
pqwCurrTSF -> current_tsf

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-05-24 14:37:02 +01:00 committed by Greg Kroah-Hartman
parent 302361d475
commit 2092dfa4ef
1 changed files with 4 additions and 4 deletions

View File

@ -615,17 +615,17 @@ void CARDvAdjustTSF(struct vnt_private *priv, u8 rx_rate,
* *
* Parameters: * Parameters:
* In: * In:
* pDevice - The adapter to be read * priv - The adapter to be read
* Out: * Out:
* qwCurrTSF - Current TSF counter * current_tsf - Current TSF counter
* *
* Return Value: true if success; otherwise false * 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; return true;
} }