Commit 3c956cc0 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: rename BBvSetShortSlotTime to vnt_set_short_slot_time

Dropping BB
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7534180c
...@@ -526,7 +526,7 @@ int vnt_vt3184_init(struct vnt_private *priv) ...@@ -526,7 +526,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
* Return Value: none * Return Value: none
* *
*/ */
void BBvSetShortSlotTime(struct vnt_private *priv) void vnt_set_short_slot_time(struct vnt_private *priv)
{ {
u8 bb_vga = 0; u8 bb_vga = 0;
......
...@@ -93,7 +93,7 @@ unsigned int vnt_get_frame_time(u8 preamble_type, u8 pkt_type, ...@@ -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, void vnt_get_phy_field(struct vnt_private *, u32 frame_length,
u16 tx_rate, u8 pkt_type, struct vnt_phy_field *); 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 BBvSetVGAGainOffset(struct vnt_private *, u8 byData);
void vnt_set_antenna_mode(struct vnt_private *, u8); void vnt_set_antenna_mode(struct vnt_private *, u8);
int vnt_vt3184_init(struct vnt_private *); int vnt_vt3184_init(struct vnt_private *);
......
...@@ -441,7 +441,7 @@ static int device_init_registers(struct vnt_private *pDevice) ...@@ -441,7 +441,7 @@ static int device_init_registers(struct vnt_private *pDevice)
else else
pDevice->bShortSlotTime = false; pDevice->bShortSlotTime = false;
BBvSetShortSlotTime(pDevice); vnt_set_short_slot_time(pDevice);
pDevice->byRadioCtl = pDevice->abyEEPROM[EEP_OFS_RADIOCTL]; pDevice->byRadioCtl = pDevice->abyEEPROM[EEP_OFS_RADIOCTL];
pDevice->bHWRadioOff = false; pDevice->bHWRadioOff = false;
...@@ -880,7 +880,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw, ...@@ -880,7 +880,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
else else
priv->bShortSlotTime = false; priv->bShortSlotTime = false;
BBvSetShortSlotTime(priv); vnt_set_short_slot_time(priv);
BBvSetVGAGainOffset(priv, priv->abyBBVGA[0]); BBvSetVGAGainOffset(priv, priv->abyBBVGA[0]);
BBvUpdatePreEDThreshold(priv, false); BBvUpdatePreEDThreshold(priv, false);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment