OSDN Git Service

staging: vt6656: struct vnt_private replace byAutoFBCtrl with auto_fb_ctrl
authorMalcolm Priestley <tvboxspy@gmail.com>
Sun, 20 Jul 2014 14:33:24 +0000 (15:33 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Jul 2014 19:16:29 +0000 (12:16 -0700)
Removing type prefix and camel case.

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

index 6647b2b..ef9b505 100644 (file)
@@ -380,7 +380,7 @@ struct vnt_private {
 
        unsigned long key_entry_inuse;
 
-       u8 byAutoFBCtrl;
+       u8 auto_fb_ctrl;
 
        /* For Update BaseBand VGA Gain Offset */
        u8 abyBBVGA[BB_VGA_LEVEL];
index f7f4dcc..fac13b1 100644 (file)
@@ -123,7 +123,7 @@ static void device_set_options(struct vnt_private *priv)
        priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
        priv->bb_type = BBP_TYPE_DEF;
        priv->packet_type = priv->bb_type;
-       priv->byAutoFBCtrl = AUTO_FB_0;
+       priv->auto_fb_ctrl = AUTO_FB_0;
        priv->preamble_type = 0;
        priv->exist_sw_net_addr = false;
 }
@@ -280,7 +280,7 @@ static int device_init_registers(struct vnt_private *priv)
        vnt_set_antenna_mode(priv, priv->rx_antenna_mode);
 
        /* get Auto Fall Back type */
-       priv->byAutoFBCtrl = AUTO_FB_0;
+       priv->auto_fb_ctrl = AUTO_FB_0;
 
        /* default Auto Mode */
        priv->bb_type = BB_TYPE_11G;
index 8d745af..0febd03 100644 (file)
@@ -866,7 +866,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
 
        /* legacy rates TODO use ieee80211_tx_rate */
        if (current_rate >= RATE_18M && ieee80211_is_data(hdr->frame_control)) {
-               if (priv->byAutoFBCtrl == AUTO_FB_0) {
+               if (priv->auto_fb_ctrl == AUTO_FB_0) {
                        tx_buffer_head->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
 
                        priv->tx_rate_fb0 =
@@ -875,7 +875,7 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
                                vnt_fb_opt0[FB_RATE1][current_rate - RATE_18M];
 
                        fb_option = AUTO_FB_0;
-               } else if (priv->byAutoFBCtrl == AUTO_FB_1) {
+               } else if (priv->auto_fb_ctrl == AUTO_FB_1) {
                        tx_buffer_head->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
 
                        priv->tx_rate_fb0 =