Commit 1e00b449 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: struct vnt_beacon_buffer replace byType with type

Removing camel case
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c8a3a4c0
...@@ -1046,7 +1046,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv, ...@@ -1046,7 +1046,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv,
beacon_buffer->tx_byte_count = cpu_to_le16(count); beacon_buffer->tx_byte_count = cpu_to_le16(count);
beacon_buffer->pkt_no = context->pkt_no; beacon_buffer->pkt_no = context->pkt_no;
beacon_buffer->byType = 0x01; beacon_buffer->type = 0x01;
context->type = CONTEXT_BEACON_PACKET; context->type = CONTEXT_BEACON_PACKET;
context->buf_len = count + 4; /* USB header */ context->buf_len = count + 4; /* USB header */
......
...@@ -245,7 +245,7 @@ struct vnt_tx_short_buf_head { ...@@ -245,7 +245,7 @@ struct vnt_tx_short_buf_head {
} __packed; } __packed;
struct vnt_beacon_buffer { struct vnt_beacon_buffer {
u8 byType; u8 type;
u8 pkt_no; u8 pkt_no;
__le16 tx_byte_count; __le16 tx_byte_count;
struct vnt_tx_short_buf_head short_head; struct vnt_tx_short_buf_head short_head;
......
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