diff options
author | Marcin Kraglak <marcin.kraglak@tieto.com> | 2014-10-20 15:33:51 +0200 |
---|---|---|
committer | Szymon Janc <szymon.janc@tieto.com> | 2014-10-21 10:35:10 +0200 |
commit | ed95d154607364f0a4e641bd39d18c785c6afd2c (patch) | |
tree | e026aaa31c66ba2a738fc76a6d8bd6bd631a1301 /android/bluetooth.c | |
parent | 23b3d827158e05a28fe77b85262d71786a5a4dc1 (diff) | |
download | bluez-ed95d154607364f0a4e641bd39d18c785c6afd2c.tar.gz |
android/bluetooth: Fix Supported feature bitmask for MPMD scenarios
Set A2DP-SRC_AVRCP-TG instead of A2DP-SNK_AVRCP-CT_DUN-DT bit.
It was affecting TC_SDP_CTH_SD_BV_01_I PTS test case.
Diffstat (limited to 'android/bluetooth.c')
-rw-r--r-- | android/bluetooth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/bluetooth.c b/android/bluetooth.c index 827e2055f..03eb1a115 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -70,7 +70,7 @@ */ #define MPS_DEFAULT_MPMD ((1ULL << 1) | (1ULL << 3) | (1ULL << 5) | \ (1ULL << 6) | (1ULL << 8) | (1ULL << 10) | \ - (1ULL << 12) | (1ULL << 15) | (1ULL << 18)) + (1ULL << 12) | (1ULL << 15) | (1ULL << 17)) /* * bits in bitmask as defined in table 6.5 of Multi Profile Specification |