staging: vt6656: rename BBvSetShortSlotTime to vnt_set_short_slot_time
authorMalcolm Priestley <tvboxspy@gmail.com>
Wed, 16 Jul 2014 21:21:54 +0000 (22:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jul 2014 01:01:52 +0000 (18:01 -0700)
Dropping BB

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

index 44068d004a6305c80d1065f426ee647269b2597b..3138826b77671323f8c39728ae7f64cf6e134f94 100644 (file)
@@ -526,7 +526,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
  * Return Value: none
  *
  */
-void BBvSetShortSlotTime(struct vnt_private *priv)
+void vnt_set_short_slot_time(struct vnt_private *priv)
 {
        u8 bb_vga = 0;
 
index f102ec009aae4954468ab3c04b273168540115eb..1a36e1376494770d638b6fc9a17e759099187a20 100644 (file)
@@ -93,7 +93,7 @@ unsigned int vnt_get_frame_time(u8 preamble_type, u8 pkt_type,
 void vnt_get_phy_field(struct vnt_private *, u32 frame_length,
        u16 tx_rate, u8 pkt_type, struct vnt_phy_field *);
 
-void BBvSetShortSlotTime(struct vnt_private *);
+void vnt_set_short_slot_time(struct vnt_private *);
 void BBvSetVGAGainOffset(struct vnt_private *, u8 byData);
 void vnt_set_antenna_mode(struct vnt_private *, u8);
 int vnt_vt3184_init(struct vnt_private *);
index caafb93174e7b76955c536a61c99cf34e2b74d36..a418d1d3e2a93e3c8555040a503452519f3a3012 100644 (file)
@@ -441,7 +441,7 @@ static int device_init_registers(struct vnt_private *pDevice)
        else
                pDevice->bShortSlotTime = false;
 
-       BBvSetShortSlotTime(pDevice);
+       vnt_set_short_slot_time(pDevice);
 
        pDevice->byRadioCtl = pDevice->abyEEPROM[EEP_OFS_RADIOCTL];
        pDevice->bHWRadioOff = false;
@@ -880,7 +880,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
                else
                        priv->bShortSlotTime = false;
 
-               BBvSetShortSlotTime(priv);
+               vnt_set_short_slot_time(priv);
                BBvSetVGAGainOffset(priv, priv->abyBBVGA[0]);
                BBvUpdatePreEDThreshold(priv, false);
        }