Browse Source

staging: vt6656: vnt_tx_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>
Malcolm Priestley 11 years ago
parent
commit
c8a3a4c0a2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      drivers/staging/vt6656/rxtx.c
  2. 1 1
      drivers/staging/vt6656/rxtx.h

+ 1 - 1
drivers/staging/vt6656/rxtx.c

@@ -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;
 

+ 1 - 1
drivers/staging/vt6656/rxtx.h

@@ -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;