From: Victor Lourme Date: Mon, 26 Mar 2018 17:36:07 +0000 (+0200) Subject: audio: return EINVAL to avoid get_presentation_position spamming logs X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=14ade1449623ae3bb395f64007ac26e6a1833dd3;p=GitHub%2FLineageOS%2Fandroid_hardware_samsung.git audio: return EINVAL to avoid get_presentation_position spamming logs Change-Id: I32ec0c5651395c7af3dc4b80d25204bf0fcc1977 (cherry picked from commit 5869cd357e9b0bd9dffe70ac207cda4ec266b73c) --- diff --git a/audio/audio_hw.c b/audio/audio_hw.c index 8daeb6a..5ae48b7 100644 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c @@ -3298,7 +3298,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); @@ -3337,7 +3337,6 @@ static int out_get_presentation_position(const struct audio_stream_out *stream, ret = 0; goto done; } - ret = -1; } } }