Commit 7534180c authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: rename BBbVT3184Init to vnt_vt3184_init

Dropping BB
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 41868bf4
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
* vnt_get_frame_time - Calculate data frame transmitting time * vnt_get_frame_time - Calculate data frame transmitting time
* vnt_get_phy_field - Calculate PhyLength, PhyService and Phy * vnt_get_phy_field - Calculate PhyLength, PhyService and Phy
* Signal parameter for baseband Tx * Signal parameter for baseband Tx
* BBbVT3184Init - VIA VT3184 baseband chip init code * vnt_vt3184_init - VIA VT3184 baseband chip init code
* *
* Revision History: * Revision History:
* *
...@@ -378,7 +378,7 @@ void vnt_set_antenna_mode(struct vnt_private *priv, u8 antenna_mode) ...@@ -378,7 +378,7 @@ void vnt_set_antenna_mode(struct vnt_private *priv, u8 antenna_mode)
* *
*/ */
int BBbVT3184Init(struct vnt_private *priv) int vnt_vt3184_init(struct vnt_private *priv)
{ {
int status; int status;
u16 length; u16 length;
......
...@@ -96,7 +96,7 @@ void vnt_get_phy_field(struct vnt_private *, u32 frame_length, ...@@ -96,7 +96,7 @@ void vnt_get_phy_field(struct vnt_private *, u32 frame_length,
void BBvSetShortSlotTime(struct vnt_private *); void BBvSetShortSlotTime(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 BBbVT3184Init(struct vnt_private *); int vnt_vt3184_init(struct vnt_private *);
void BBvSetDeepSleep(struct vnt_private *); void BBvSetDeepSleep(struct vnt_private *);
void BBvExitDeepSleep(struct vnt_private *); void BBvExitDeepSleep(struct vnt_private *);
void BBvUpdatePreEDThreshold(struct vnt_private *, int scanning); void BBvUpdatePreEDThreshold(struct vnt_private *, int scanning);
......
...@@ -247,8 +247,8 @@ static int device_init_registers(struct vnt_private *pDevice) ...@@ -247,8 +247,8 @@ static int device_init_registers(struct vnt_private *pDevice)
} }
} }
if (!BBbVT3184Init(pDevice)) { if (!vnt_vt3184_init(pDevice)) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" BBbVT3184Init fail\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" vnt_vt3184_init fail\n");
return false; return 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