Commit 113f0b91 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: struct vnt_private rename qwCurrTSF to current_tsf

parent 35cc8f94
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}
+1 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ struct vnt_private {

	u8 exist_sw_net_addr;

	u64 qwCurrTSF;
	u64 current_tsf;

	/* 802.11 MAC specific */
	u32 uCurrRSSI;
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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,