Commit 3b45e2e1 authored by Tanjuate Brunostar's avatar Tanjuate Brunostar Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: change variable name wTimeStampOff

parent a653e32a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@
 */
#define CRITICAL_PACKET_LEN      256

static const unsigned short wTimeStampOff[2][MAX_RATE] = {
static const unsigned short time_stamp_off[2][MAX_RATE] = {
	{384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23}, /* Long Preamble */
	{384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, /* Short Preamble */
};
@@ -142,7 +142,7 @@ s_uFillDataHead(

static __le16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
{
	return cpu_to_le16(wTimeStampOff[priv->preamble_type % 2]
	return cpu_to_le16(time_stamp_off[priv->preamble_type % 2]
							[rate % MAX_RATE]);
}