rtlwifi: btcoexist: Convert BTC_PRINTK to btc_<foo>_dbg
[cascardo/linux.git] / drivers / net / wireless / realtek / rtlwifi / btcoexist / halbtcoutsrc.h
index 0a903ea..3cbe34c 100644 (file)
@@ -116,12 +116,17 @@ extern u32 btc_dbg_type[];
 #define                WIFI_P2P_GO_CONNECTED                   BIT3
 #define                WIFI_P2P_GC_CONNECTED                   BIT4
 
-#define        BTC_PRINT(dbgtype, dbgflag, printstr, ...)              \
-       do {                                                    \
-               if (unlikely(btc_dbg_type[dbgtype] & dbgflag)) {\
-                       printk(printstr, ##__VA_ARGS__);        \
-               }                                               \
-       } while (0)
+#define        btc_alg_dbg(dbgflag, fmt, ...)                                  \
+do {                                                                   \
+       if (unlikely(btc_dbg_type[BTC_MSG_ALGORITHM] & dbgflag))        \
+               printk(KERN_DEBUG fmt, ##__VA_ARGS__);                  \
+} while (0)
+#define        btc_iface_dbg(dbgflag, fmt, ...)                                \
+do {                                                                   \
+       if (unlikely(btc_dbg_type[BTC_MSG_INTERFACE] & dbgflag))        \
+               printk(KERN_DEBUG fmt, ##__VA_ARGS__);                  \
+} while (0)
+
 
 #define        BTC_RSSI_HIGH(_rssi_)   \
        ((_rssi_ == BTC_RSSI_STATE_HIGH ||      \
@@ -535,7 +540,7 @@ void exhalbtc_set_bt_patch_version(u16 bt_hci_version, u16 bt_patch_version);
 void exhalbtc_update_min_bt_rssi(char bt_rssi);
 void exhalbtc_set_bt_exist(bool bt_exist);
 void exhalbtc_set_chip_type(u8 chip_type);
-void exhalbtc_set_ant_num(u8 type, u8 ant_num);
+void exhalbtc_set_ant_num(struct rtl_priv *rtlpriv, u8 type, u8 ant_num);
 void exhalbtc_display_bt_coex_info(struct btc_coexist *btcoexist);
 void exhalbtc_signal_compensation(struct btc_coexist *btcoexist,
                                  u8 *rssi_wifi, u8 *rssi_bt);