From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> btd_service_connecting_complete should be called whenever the service is connected otherwise the service state will not be consistent. --- profiles/audio/source.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/profiles/audio/source.c b/profiles/audio/source.c index 64570a6..c171620 100644 --- a/profiles/audio/source.c +++ b/profiles/audio/source.c @@ -163,6 +163,7 @@ static void stream_state_changed(struct avdtp_stream *stream, source->cb_id = 0; break; case AVDTP_STATE_OPEN: + btd_service_connecting_complete(source->service, 0); source_set_state(source, SOURCE_STATE_CONNECTED); break; case AVDTP_STATE_STREAMING: @@ -211,11 +212,8 @@ static void stream_setup_complete(struct avdtp *session, struct a2dp_sep *sep, source->connect_id = 0; - if (stream) { - DBG("Stream successfully created"); - btd_service_connecting_complete(source->service, 0); + if (stream) return; - } avdtp_unref(source->session); source->session = NULL; -- 1.8.1.4 -- 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