staging: vt6656: vnt_tx_buffer replace byType with type
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 22 Jul 2014 21:49:46 +0000 (22:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Jul 2014 23:19:35 +0000 (16:19 -0700)
Removing 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 8e33e406dfe87bafba8e5dd39fa7af4faa641ec5..5a7114dd6d1c266c82f25a577d34e7b3021c39bc 100644 (file)
@@ -950,7 +950,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
 
        tx_buffer->tx_byte_count = cpu_to_le16(tx_bytes);
        tx_buffer->pkt_no = tx_context->pkt_no;
-       tx_buffer->byType = 0x00;
+       tx_buffer->type = 0x00;
 
        tx_bytes += 4;
 
index 5439ed096864cbf275e6d6a5734209a5eaa079e4..808058f29686fc8efaca272a61514bdb3df63c90 100644 (file)
@@ -229,7 +229,7 @@ struct vnt_tx_fifo_head {
 } __packed;
 
 struct vnt_tx_buffer {
-       u8 byType;
+       u8 type;
        u8 pkt_no;
        __le16 tx_byte_count;
        struct vnt_tx_fifo_head fifo_head;
This page took 0.025264 seconds and 5 git commands to generate.