Commit 0871dc69 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: vnt_get_duration_le fix typo piv to priv

parent bab97c05
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -180,20 +180,20 @@ static __le16 vnt_get_rtscts_rsvtime_le(struct vnt_private *priv,
	return cpu_to_le16((u16)rrv_time);
}

static __le16 vnt_get_duration_le(struct vnt_private *piv,
static __le16 vnt_get_duration_le(struct vnt_private *priv,
					u8 pkt_type, int need_ack)
{
	u32 ack_time = 0;

	if (need_ack) {
		if (pkt_type == PK_TYPE_11B)
			ack_time = vnt_get_frame_time(piv->preamble_type,
				pkt_type, 14, piv->top_cck_basic_rate);
			ack_time = vnt_get_frame_time(priv->preamble_type,
				pkt_type, 14, priv->top_cck_basic_rate);
		else
			ack_time = vnt_get_frame_time(piv->preamble_type,
				pkt_type, 14, piv->top_ofdm_basic_rate);
			ack_time = vnt_get_frame_time(priv->preamble_type,
				pkt_type, 14, priv->top_ofdm_basic_rate);

		return cpu_to_le16((u16)(piv->sifs + ack_time));
		return cpu_to_le16((u16)(priv->sifs + ack_time));
	}

	return 0;