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

staging: vt6655: change variable name wTimeStampOff

Remove the use of Hungarian notation, which is not used in the Linux
kernel.
Signed-off-by: default avatarTanjuate Brunostar <tanjubrunostar0@gmail.com>
Link: https://lore.kernel.org/r/Y2DtFRdhCiyNF2kF@elroy-temp-vm.gaiao0uenmiufjlowqgp5yxwdh.gvxx.internal.cloudapp.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a653e32a
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
*/ */
#define CRITICAL_PACKET_LEN 256 #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, 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 */ {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, /* Short Preamble */
}; };
...@@ -142,7 +142,7 @@ s_uFillDataHead( ...@@ -142,7 +142,7 @@ s_uFillDataHead(
static __le16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate) 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]); [rate % MAX_RATE]);
} }
......
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