staging: vt6656: rename MACvSetBBType to vnt_mac_set_bb_type

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley
2014-05-31 11:50:38 +01:00
committed by Greg Kroah-Hartman
parent aa6907da1f
commit 05089fbc52
3 changed files with 4 additions and 4 deletions

View File

@@ -832,9 +832,9 @@ int vnt_radio_power_on(struct vnt_private *priv)
void vnt_set_bss_mode(struct vnt_private *priv)
{
if (priv->byRFType == RF_AIROHA7230 && priv->byBBType == BB_TYPE_11A)
MACvSetBBType(priv, BB_TYPE_11G);
vnt_mac_set_bb_type(priv, BB_TYPE_11G);
else
MACvSetBBType(priv, priv->byBBType);
vnt_mac_set_bb_type(priv, priv->byBBType);
priv->byPacketType = vnt_get_pkt_type(priv);

View File

@@ -74,7 +74,7 @@ void vnt_mac_shutdown(struct vnt_private *priv)
vnt_control_out(priv, MESSAGE_TYPE_MACSHUTDOWN, 0, 0, 0, NULL);
}
void MACvSetBBType(struct vnt_private *priv, u8 type)
void vnt_mac_set_bb_type(struct vnt_private *priv, u8 type)
{
u8 data[2];

View File

@@ -416,7 +416,7 @@ struct vnt_mac_set_key {
void vnt_mac_set_filter(struct vnt_private *, u64);
void vnt_mac_shutdown(struct vnt_private *);
void MACvSetBBType(struct vnt_private *, u8);
void vnt_mac_set_bb_type(struct vnt_private *, u8);
void MACvDisableKeyEntry(struct vnt_private *, u8);
void MACvSetKeyEntry(struct vnt_private *, u16, u32, u32, u8 *, u8 *);
void MACvRegBitsOff(struct vnt_private *, u8, u8);