From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> 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 1627b83..472c7e8 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) -- 1.9.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