staging: vt6656: struct vnt_beacon_buffer replace byType with type

Removing camel case

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-22 22:49:47 +01:00 committed by Greg Kroah-Hartman
parent c8a3a4c0a2
commit 1e00b449fa
2 changed files with 2 additions and 2 deletions

View File

@ -1046,7 +1046,7 @@ static int vnt_beacon_xmit(struct vnt_private *priv,
beacon_buffer->tx_byte_count = cpu_to_le16(count);
beacon_buffer->pkt_no = context->pkt_no;
beacon_buffer->byType = 0x01;
beacon_buffer->type = 0x01;
context->type = CONTEXT_BEACON_PACKET;
context->buf_len = count + 4; /* USB header */

View File

@ -245,7 +245,7 @@ struct vnt_tx_short_buf_head {
} __packed;
struct vnt_beacon_buffer {
u8 byType;
u8 type;
u8 pkt_no;
__le16 tx_byte_count;
struct vnt_tx_short_buf_head short_head;