Commit a6177aef authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: struct vnt_private replace byAutoFBCtrl with auto_fb_ctrl



Removing type prefix and camel case.

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b2bc0aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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];
+2 −2
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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 =