33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 066a164a524e4983b850f5659b921cb42f84a0e0 Mon Sep 17 00:00:00 2001
|
|
From: Pauli Virtanen <pav@iki.fi>
|
|
Date: Mon, 16 Feb 2026 18:17:08 +0200
|
|
Subject: [PATCH] a2dp: connect source profile after sink
|
|
|
|
Since cdcd845f87ee the order in which profiles with the same priority
|
|
are connected is the same order as btd_profile_register() is called,
|
|
instead of being the opposite order. When initiating connections, we
|
|
want to prefer a2dp-sink profile over a2dp-source, as connecting both at
|
|
the same time does not work currently.
|
|
|
|
Add .after_services to specify the order.
|
|
|
|
Fixes: https://github.com/bluez/bluez/issues/1898
|
|
---
|
|
profiles/audio/a2dp.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
|
|
index 7a37003a2b..c7e0fc75c0 100644
|
|
--- a/profiles/audio/a2dp.c
|
|
+++ b/profiles/audio/a2dp.c
|
|
@@ -3769,6 +3769,9 @@ static struct btd_profile a2dp_source_profile = {
|
|
|
|
.adapter_probe = a2dp_sink_server_probe,
|
|
.adapter_remove = a2dp_sink_server_remove,
|
|
+
|
|
+ /* Connect source after sink, to prefer sink when conflicting */
|
|
+ .after_services = BTD_PROFILE_UUID_CB(NULL, A2DP_SINK_UUID),
|
|
};
|
|
|
|
static struct btd_profile a2dp_sink_profile = {
|