From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> With the changes to the core now it does a strict match of adapter profiles with .local_uuid to prevent connecting to profiles not enabled in SDP. --- profiles/audio/a2dp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c index 6b3d6b2..0a347e5 100644 --- a/profiles/audio/a2dp.c +++ b/profiles/audio/a2dp.c @@ -2008,6 +2008,7 @@ static struct btd_profile a2dp_source_profile = { .name = "a2dp-source", .priority = BTD_PROFILE_PRIORITY_MEDIUM, + .local_uuid = A2DP_SINK_UUID, .remote_uuid = A2DP_SOURCE_UUID, .device_probe = a2dp_source_probe, .device_remove = a2dp_source_remove, @@ -2024,6 +2025,7 @@ static struct btd_profile a2dp_sink_profile = { .name = "a2dp-sink", .priority = BTD_PROFILE_PRIORITY_MEDIUM, + .local_uuid = A2DP_SOURCE_UUID, .remote_uuid = A2DP_SINK_UUID, .device_probe = a2dp_sink_probe, .device_remove = a2dp_sink_remove, -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html