staging: vt6656: struct vnt_private rename qwCurrTSF to 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-07-19 12:30:13 +01:00 committed by Greg Kroah-Hartman
parent 35cc8f94e6
commit 113f0b915b
4 changed files with 5 additions and 5 deletions

View file

@ -583,7 +583,7 @@ void vnt_adjust_tsf(struct vnt_private *priv, u8 rx_rate,
bool vnt_get_current_tsf(struct vnt_private *priv, u64 *current_tsf)
{
*current_tsf = priv->qwCurrTSF;
*current_tsf = priv->current_tsf;
return true;
}
@ -604,7 +604,7 @@ bool vnt_clear_current_tsf(struct vnt_private *priv)
vnt_mac_reg_bits_on(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTRST);
priv->qwCurrTSF = 0;
priv->current_tsf = 0;
return true;
}

View file

@ -311,7 +311,7 @@ struct vnt_private {
u8 exist_sw_net_addr;
u64 qwCurrTSF;
u64 current_tsf;
/* 802.11 MAC specific */
u32 uCurrRSSI;

View file

@ -162,7 +162,7 @@ void vnt_int_process_data(struct vnt_private *priv)
}
#endif
}
priv->qwCurrTSF = le64_to_cpu(int_data->tsf);
priv->current_tsf = le64_to_cpu(int_data->tsf);
low_stats->dot11RTSSuccessCount += int_data->rts_success;
low_stats->dot11RTSFailureCount += int_data->rts_fail;

View file

@ -924,7 +924,7 @@ static u64 vnt_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
{
struct vnt_private *priv = hw->priv;
return priv->qwCurrTSF;
return priv->current_tsf;
}
static void vnt_set_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif,