summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/main_usb.c
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-07-20 15:33:17 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-21 12:16:28 -0700
commit98e93fe5ba0b82c788a9ac038f250e2cc02fa05b (patch)
tree673d40a627db9537c014332bbc1bd589e9df0f45 /drivers/staging/vt6656/main_usb.c
parentbbb112639d492be6e1bf264a782fae75399d0aee (diff)
staging: vt6656: struct vnt_private replace byPreambleType with preamble_type
Removing type prefix and camel case. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/main_usb.c')
-rw-r--r--drivers/staging/vt6656/main_usb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c
index 4054e3682782..325daae3b8a1 100644
--- a/drivers/staging/vt6656/main_usb.c
+++ b/drivers/staging/vt6656/main_usb.c
@@ -124,7 +124,7 @@ static void device_set_options(struct vnt_private *priv)
priv->bb_type = BBP_TYPE_DEF;
priv->packet_type = priv->bb_type;
priv->byAutoFBCtrl = AUTO_FB_0;
- priv->byPreambleType = 0;
+ priv->preamble_type = 0;
priv->exist_sw_net_addr = false;
}
@@ -752,10 +752,10 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
if (changed & BSS_CHANGED_ERP_PREAMBLE) {
if (conf->use_short_preamble) {
vnt_mac_enable_barker_preamble_mode(priv);
- priv->byPreambleType = true;
+ priv->preamble_type = true;
} else {
vnt_mac_disable_barker_preamble_mode(priv);
- priv->byPreambleType = false;
+ priv->preamble_type = false;
}
}