]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: vt6656: rename MACvSetBBType to vnt_mac_set_bb_type
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 31 May 2014 10:50:38 +0000 (11:50 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jun 2014 22:57:37 +0000 (15:57 -0700)
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/card.c
drivers/staging/vt6656/mac.c
drivers/staging/vt6656/mac.h

index ffd6a01e609bbfb7c2fdb13f66cc455e8738f304..03b0cf3626e89df8d429d26b0d0e59cbd3624c51 100644 (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);
 
index 5ee5376b2d996405aa716522e4f4470333545652..136c2637dcb3e05edabf303c9be9415c460b8592 100644 (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];
 
index 9eee6d7da503d8168909d07acee5989ac225dd26..ac3d794e0021a0aa11964f5c23aaf08fe886c0cc 100644 (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);