From d7f381df6fbf697510c094fc4f435a07e2676c63 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 18 Jul 2014 12:48:15 +0300 Subject: [PATCH] android/hal-sco: Defer SCO connection to write() Do not return error when opening output stream if SCO is not connected yet, we will check it later with actual out_write(). --- android/hal-sco.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/android/hal-sco.c b/android/hal-sco.c index 1627b833d..472c7e8e3 100644 --- a/android/hal-sco.c +++ b/android/hal-sco.c @@ -632,10 +632,8 @@ static int sco_open_output_stream(struct audio_hw_device *dev, return -EIO; } - if (ipc_connect_sco() != SCO_STATUS_SUCCESS) { - error("sco: cannot get fd"); - return -EIO; - } + if (ipc_connect_sco() != SCO_STATUS_SUCCESS) + DBG("SCO is not connected yet; get fd on write()"); out = calloc(1, sizeof(struct sco_stream_out)); if (!out) -- 2.47.3