Commit 2092dfa4 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: CARDbGetCurrentTSF remove camel case

pDevice -> priv
pqwCurrTSF -> current_tsf
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 302361d4
...@@ -615,17 +615,17 @@ void CARDvAdjustTSF(struct vnt_private *priv, u8 rx_rate, ...@@ -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;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment