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

staging: vt6656: rename MACvSetBBType to vnt_mac_set_bb_type

parent aa6907da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);

+1 −1
Original line number Diff line number Diff line
@@ -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];

+1 −1
Original line number Diff line number Diff line
@@ -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);