Commit 7bf7a71e authored by Rajkumar Manoharan's avatar Rajkumar Manoharan Committed by John W. Linville

ath9k: Add new BT profile info A2DP_Voice

When the BT connection is initiated by headset, it's possible that headset
requests to make one A2DP and one Voice connection over the same link.
BT firmware will send a new profile A2DP_Voice in this case. So WLAN
has to take care of this new profile for tuning BTCOEX parameters.
Signed-off-by: default avatarRajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f9401b1e
...@@ -126,6 +126,7 @@ enum ath_mci_gpm_coex_profile_type { ...@@ -126,6 +126,7 @@ enum ath_mci_gpm_coex_profile_type {
MCI_GPM_COEX_PROFILE_HID, MCI_GPM_COEX_PROFILE_HID,
MCI_GPM_COEX_PROFILE_BNEP, MCI_GPM_COEX_PROFILE_BNEP,
MCI_GPM_COEX_PROFILE_VOICE, MCI_GPM_COEX_PROFILE_VOICE,
MCI_GPM_COEX_PROFILE_A2DPVO,
MCI_GPM_COEX_PROFILE_MAX MCI_GPM_COEX_PROFILE_MAX
}; };
......
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
_mci->num_pan++; \ _mci->num_pan++; \
break; \ break; \
case MCI_GPM_COEX_PROFILE_VOICE: \ case MCI_GPM_COEX_PROFILE_VOICE: \
case MCI_GPM_COEX_PROFILE_A2DPVO:\
_mci->num_sco++; \ _mci->num_sco++; \
break; \ break; \
default: \ default: \
...@@ -94,6 +95,7 @@ ...@@ -94,6 +95,7 @@
_mci->num_pan--; \ _mci->num_pan--; \
break; \ break; \
case MCI_GPM_COEX_PROFILE_VOICE: \ case MCI_GPM_COEX_PROFILE_VOICE: \
case MCI_GPM_COEX_PROFILE_A2DPVO:\
_mci->num_sco--; \ _mci->num_sco--; \
break; \ break; \
default: \ default: \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment