staging: vt6656: struct vnt_private replace byAutoFBCtrl with auto_fb_ctrl

Removing type prefix and camel case.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley
2014-07-20 15:33:24 +01:00
committed by Greg Kroah-Hartman
parent 1b2bc0aa8d
commit a6177aef3c
3 changed files with 5 additions and 5 deletions

View 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];

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

View 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 =