From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> In delay report handling add AVDTP_STATE_OPEN to good states. --- profiles/audio/avdtp.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c index e409d38..434ebc7 100644 --- a/profiles/audio/avdtp.c +++ b/profiles/audio/avdtp.c @@ -1944,10 +1944,17 @@ static gboolean avdtp_delayreport_cmd(struct avdtp *session, stream = sep->stream; - if (sep->state != AVDTP_STATE_CONFIGURED && - sep->state != AVDTP_STATE_STREAMING) { + switch (sep->state) { + case AVDTP_STATE_IDLE: + case AVDTP_STATE_ABORTING: + case AVDTP_STATE_CLOSING: err = AVDTP_BAD_STATE; goto failed; + case AVDTP_STATE_CONFIGURED: + case AVDTP_STATE_OPEN: + case AVDTP_STATE_STREAMING: + default: + break; } stream->delay = ntohs(req->delay); -- 2.1.0 -- 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