Commit 14fb6ce8 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: struct vnt_tx_short_buf_head change base type of fifo_ctl to __le16

Base type is always little endian.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 47e08894
...@@ -1013,7 +1013,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv, ...@@ -1013,7 +1013,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv,
vnt_time_stamp_off(priv, current_rate); vnt_time_stamp_off(priv, current_rate);
} else { } else {
current_rate = RATE_1M; current_rate = RATE_1M;
short_head->fifo_ctl |= FIFOCTL_11B; short_head->fifo_ctl |= cpu_to_le16(FIFOCTL_11B);
/* Get SignalField,ServiceField,Length */ /* Get SignalField,ServiceField,Length */
vnt_get_phy_field(priv, frame_size, current_rate, vnt_get_phy_field(priv, frame_size, current_rate,
......
...@@ -237,7 +237,7 @@ struct vnt_tx_buffer { ...@@ -237,7 +237,7 @@ struct vnt_tx_buffer {
} __packed; } __packed;
struct vnt_tx_short_buf_head { struct vnt_tx_short_buf_head {
u16 fifo_ctl; __le16 fifo_ctl;
u16 time_stamp; u16 time_stamp;
struct vnt_phy_field ab; struct vnt_phy_field ab;
__le16 duration; __le16 duration;
......
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