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

staging: vt6656: struct vnt_tx_buffer replace byPKTNO with pkt_no

Replacing camel case
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f0ff3fde
...@@ -949,7 +949,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb) ...@@ -949,7 +949,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
IEEE80211_SCTL_SEQ) >> 4; IEEE80211_SCTL_SEQ) >> 4;
tx_buffer->tx_byte_count = cpu_to_le16(tx_bytes); tx_buffer->tx_byte_count = cpu_to_le16(tx_bytes);
tx_buffer->byPKTNO = tx_context->pkt_no; tx_buffer->pkt_no = tx_context->pkt_no;
tx_buffer->byType = 0x00; tx_buffer->byType = 0x00;
tx_bytes += 4; tx_bytes += 4;
......
...@@ -230,7 +230,7 @@ struct vnt_tx_fifo_head { ...@@ -230,7 +230,7 @@ struct vnt_tx_fifo_head {
struct vnt_tx_buffer { struct vnt_tx_buffer {
u8 byType; u8 byType;
u8 byPKTNO; u8 pkt_no;
__le16 tx_byte_count; __le16 tx_byte_count;
struct vnt_tx_fifo_head fifo_head; struct vnt_tx_fifo_head fifo_head;
union vnt_tx_head tx_head; union vnt_tx_head tx_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