This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: utils/common: add V4L2_CAP_EDID support Author: Hans Verkuil <hverkuil-ci...@xs4all.nl> Date: Mon Aug 19 09:44:06 2024 +0200 Understand V4L2_CAP_EDID and log it. Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl> utils/common/v4l2-info.cpp | 2 ++ 1 file changed, 2 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=fcf11a990ffe7e4cb973e4135f2755c197beda7d diff --git a/utils/common/v4l2-info.cpp b/utils/common/v4l2-info.cpp index aaf7b0b5297c..7dd7e708eb5e 100644 --- a/utils/common/v4l2-info.cpp +++ b/utils/common/v4l2-info.cpp @@ -91,6 +91,8 @@ static std::string cap2s(unsigned cap) s += "\t\tI/O MC\n"; if (cap & V4L2_CAP_READWRITE) s += "\t\tRead/Write\n"; + if (cap & V4L2_CAP_EDID) + s += "\t\tEDID Only\n"; if (cap & V4L2_CAP_STREAMING) s += "\t\tStreaming\n"; if (cap & V4L2_CAP_EXT_PIX_FORMAT)