Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 074ca43f authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] v4l2-dv-timings: fill in type field



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

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent fe9c2564
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -408,6 +408,7 @@ bool v4l2_detect_cvt(unsigned frame_height, unsigned hfreq, unsigned vsync,
		h_fp = h_blank - hsync - h_bp;
		h_fp = h_blank - hsync - h_bp;
	}
	}


	fmt->type = V4L2_DV_BT_656_1120;
	fmt->bt.polarities = polarities;
	fmt->bt.polarities = polarities;
	fmt->bt.width = image_width;
	fmt->bt.width = image_width;
	fmt->bt.height = image_height;
	fmt->bt.height = image_height;
@@ -527,6 +528,7 @@ bool v4l2_detect_gtf(unsigned frame_height,


	h_fp = h_blank / 2 - hsync;
	h_fp = h_blank / 2 - hsync;


	fmt->type = V4L2_DV_BT_656_1120;
	fmt->bt.polarities = polarities;
	fmt->bt.polarities = polarities;
	fmt->bt.width = image_width;
	fmt->bt.width = image_width;
	fmt->bt.height = image_height;
	fmt->bt.height = image_height;