Commit 05089fbc authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: rename MACvSetBBType to vnt_mac_set_bb_type

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aa6907da
......@@ -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);
......
......@@ -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];
......
......@@ -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);
......
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