Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5869cd35 authored by Victor Lourme's avatar Victor Lourme
Browse files

audio: return EINVAL to avoid get_presentation_position spamming logs

Change-Id: I32ec0c5651395c7af3dc4b80d25204bf0fcc1977
parent d5b988f3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3303,7 +3303,7 @@ static int out_get_presentation_position(const struct audio_stream_out *stream,
                                   uint64_t *frames, struct timespec *timestamp)
{
    struct stream_out *out = (struct stream_out *)stream;
    int ret = -1;
    int ret = -EINVAL;

    lock_output_stream(out);

@@ -3342,7 +3342,6 @@ static int out_get_presentation_position(const struct audio_stream_out *stream,
                            ret = 0;
                            goto done;
                        }
                        ret = -1;
                    }
                }
            }