mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 01:49:20 -04:00
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:
committed by
Greg Kroah-Hartman
parent
aa6907da1f
commit
05089fbc52
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user