staging: vt6656: struct vnt_tx_buffer replace byPKTNO with pkt_no
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 22 Jul 2014 21:49:44 +0000 (22:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Jul 2014 23:19:35 +0000 (16:19 -0700)
Replacing camel case

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/rxtx.c
drivers/staging/vt6656/rxtx.h

index 7a7b6cbf40de7e7652d450cff028bc775b576010..7834128f9b2137261d5230959b5f5881b7b20321 100644 (file)
@@ -949,7 +949,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
                                                IEEE80211_SCTL_SEQ) >> 4;
 
        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_bytes += 4;
index 62a9ed38f05811ef45997e5f851ccc4947cb90b9..dee2bdf05471d3feeb50f3dd1f2cac8fac8483a8 100644 (file)
@@ -230,7 +230,7 @@ struct vnt_tx_fifo_head {
 
 struct vnt_tx_buffer {
        u8 byType;
-       u8 byPKTNO;
+       u8 pkt_no;
        __le16 tx_byte_count;
        struct vnt_tx_fifo_head fifo_head;
        union vnt_tx_head tx_head;