audio: return EINVAL to avoid get_presentation_position spamming logs

Change-Id: I32ec0c5651395c7af3dc4b80d25204bf0fcc1977
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 94650dc..9aa5989 100644
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -3303,7 +3303,7 @@
                                    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 @@
                             ret = 0;
                             goto done;
                         }
-                        ret = -1;
                     }
                 }
             }