From c6d68923a6d5b6e9bcef970eb9fdfa9c93251aa7 Mon Sep 17 00:00:00 2001 From: Chan-yeol Park Date: Tue, 9 Oct 2012 20:35:47 +0900 Subject: [PATCH] audio: Fix audio driver is not probed This patch fix the bugs that when handling an AVDTP incoming connection, audio-a2dp driver is not probed because advanced audio UUID is missed. --- audio/manager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/audio/manager.c b/audio/manager.c index 26cd9bfea..b05200948 100644 --- a/audio/manager.c +++ b/audio/manager.c @@ -1093,7 +1093,8 @@ static struct btd_profile gateway_profile = { static struct btd_profile a2dp_profile = { .name = "audio-a2dp", - .remote_uuids = BTD_UUIDS(A2DP_SOURCE_UUID, A2DP_SINK_UUID), + .remote_uuids = BTD_UUIDS(A2DP_SOURCE_UUID, A2DP_SINK_UUID, + ADVANCED_AUDIO_UUID), .device_probe = a2dp_probe, .device_remove = audio_remove, -- 2.47.3