From: Hans Verkuil <hans.verk...@cisco.com>

The detect_cvt/gtf functions didn't fill in the type field.

Signed-off-by: Hans Verkuil <hans.verk...@cisco.com>
---
 drivers/media/v4l2-core/v4l2-dv-timings.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/media/v4l2-core/v4l2-dv-timings.c 
b/drivers/media/v4l2-core/v4l2-dv-timings.c
index 1a9d393..c2f5af7 100644
--- a/drivers/media/v4l2-core/v4l2-dv-timings.c
+++ b/drivers/media/v4l2-core/v4l2-dv-timings.c
@@ -408,6 +408,7 @@ bool v4l2_detect_cvt(unsigned frame_height, unsigned hfreq, 
unsigned vsync,
                h_fp = h_blank - hsync - h_bp;
        }
 
+       fmt->type = V4L2_DV_BT_656_1120;
        fmt->bt.polarities = polarities;
        fmt->bt.width = image_width;
        fmt->bt.height = image_height;
@@ -527,6 +528,7 @@ bool v4l2_detect_gtf(unsigned frame_height,
 
        h_fp = h_blank / 2 - hsync;
 
+       fmt->type = V4L2_DV_BT_656_1120;
        fmt->bt.polarities = polarities;
        fmt->bt.width = image_width;
        fmt->bt.height = image_height;
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to