|
@@ -2606,7 +2606,12 @@ void ex_btc8821a1ant_bt_info_notify(struct btc_coexist *btcoexist,
|
|
|
|
|
|
btc8821a1ant_update_bt_link_info(btcoexist);
|
|
|
|
|
|
- if (!(bt_info&BT_INFO_8821A_1ANT_B_CONNECTION)) {
|
|
|
+ /* mask profile bit for connect-ilde identification
|
|
|
+ * (for CSR case: A2DP idle --> 0x41)
|
|
|
+ */
|
|
|
+ bt_info = bt_info & 0x1f;
|
|
|
+
|
|
|
+ if (!(bt_info & BT_INFO_8821A_1ANT_B_CONNECTION)) {
|
|
|
coex_dm->bt_status = BT_8821A_1ANT_BT_STATUS_NON_CONNECTED_IDLE;
|
|
|
RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_LOUD,
|
|
|
"[BTCoex], BtInfoNotify(), BT Non-Connected idle!!!\n");
|