staging: rtl8723au: Rename HALBT_InitHwConfig() rtl8723a_BT_init_hwconfig()
authorJes Sorensen <Jes.Sorensen@redhat.com>
Sun, 25 May 2014 20:43:39 +0000 (22:43 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 May 2014 22:14:44 +0000 (15:14 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/hal/rtl8723a_bt-coexist.c
drivers/staging/rtl8723au/hal/usb_halinit.c
drivers/staging/rtl8723au/include/rtl8723a_bt-coexist.h
drivers/staging/rtl8723au/include/rtl8723a_bt_intf.h

index 48c16f4b235552fb30bcdebaaefb92f637261e2e..30506073a56c48c8e89ce8c3aaa7772d699cd7c4 100644 (file)
@@ -11330,7 +11330,7 @@ u8 HALBT_BTChipType(struct rtw_adapter *padapter)
        return pHalData->bt_coexist.BT_CoexistType;
 }
 
-void HALBT_InitHwConfig(struct rtw_adapter *padapter)
+void rtl8723a_BT_init_hwconfig(struct rtw_adapter *padapter)
 {
        halbt_InitHwConfig8723A(padapter);
        rtl8723a_BT_do_coexist(padapter);
index cbd5a8ce45c15daa67b1d6e82a96e4bb38db0d08..2fde327be10f10fb7921ef01ef86505461e23ed3 100644 (file)
@@ -869,9 +869,9 @@ static int rtl8723au_hal_init(struct rtw_adapter *Adapter)
 
 #ifdef CONFIG_8723AU_BT_COEXIST
        HAL_INIT_PROFILE_TAG(HAL_INIT_STAGES_BT_COEXIST);
-       /*  Init BT hw config. */
-       BT_InitHwConfig(Adapter);
 #endif
+       /*  Init BT hw config. */
+       rtl8723a_BT_init_hwconfig(Adapter);
 
        HAL_INIT_PROFILE_TAG(HAL_INIT_STAGES_INIT_HAL_DM);
        rtl8723a_InitHalDm(Adapter);
index b5659fd9692d327d22e0b88372d66dda3d4b1f03..8ab56d8b1e72b7ae2e7df27c00eb87637aa11eb6 100644 (file)
@@ -1613,8 +1613,6 @@ void HALBT_InitBTVars8723A(struct rtw_adapter * padapter);
 u8 HALBT_IsBTExist(struct rtw_adapter * padapter);
 #define BT_IsBtExist HALBT_IsBTExist
 u8 HALBT_BTChipType(struct rtw_adapter * padapter);
-void HALBT_InitHwConfig(struct rtw_adapter * padapter);
-#define BT_InitHwConfig HALBT_InitHwConfig
 void HALBT_SetRtsCtsNoLenLimit(struct rtw_adapter * padapter);
 
 /*  ===== End of sync from SD7 driver HAL/HalBT.c ===== */
index 7cf4de62c9870986bc0274342bc10127a35c735f..98bea65a84785c2b0d990fcfac4ef2804e1244f1 100644 (file)
@@ -32,6 +32,7 @@ void rtl8723a_BT_lps_leave(struct rtw_adapter *padapter);
 void rtl8723a_BT_disable_coexist(struct rtw_adapter *padapter);
 bool rtl8723a_BT_disable_EDCA_turbo(struct rtw_adapter *padapter);
 void rtl8723a_dual_antenna_detection(struct rtw_adapter *padapter);
+void rtl8723a_BT_init_hwconfig(struct rtw_adapter *padapter);
 #else
 static inline bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter)
 {
@@ -56,6 +57,7 @@ static inline bool rtl8723a_BT_disable_EDCA_turbo(struct rtw_adapter *padapter)
        return false;
 }
 #define rtl8723a_dual_antenna_detection(padapter)              do {} while(0)
+#define rtl8723a_BT_init_hwconfig(padapter)                    do {} while(0)
 #endif
 
 #endif