media: uapi/linux/cec-funcs.h: set delay to 1 if unnused
authorHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 21 May 2021 08:45:44 +0000 (10:45 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 2 Jun 2021 12:08:09 +0000 (14:08 +0200)
If the audio_out_delay value is unused, then set it to 1, not 0.
The value 0 is reserved, and 1 is a much safer value since it
translates to a delay of (1 - 1) * 2 = 0 ms.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
include/uapi/linux/cec-funcs.h

index 37590027b6046403558043b4f74f8e716b8f9476..c3baaea0b8ef6024518f2eb4c729d02975e8af48 100644 (file)
@@ -1665,7 +1665,7 @@ static inline void cec_ops_report_current_latency(const struct cec_msg *msg,
        if (*audio_out_compensated == 3 && msg->len >= 7)
                *audio_out_delay = msg->msg[6];
        else
-               *audio_out_delay = 0;
+               *audio_out_delay = 1;
 }
 
 static inline void cec_msg_request_current_latency(struct cec_msg *msg,