From ed95d154607364f0a4e641bd39d18c785c6afd2c Mon Sep 17 00:00:00 2001 From: Marcin Kraglak Date: Mon, 20 Oct 2014 15:33:51 +0200 Subject: [PATCH] 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. --- android/bluetooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3