summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/s5p-tv
diff options
context:
space:
mode:
authorHans Verkuil2015-11-13 12:46:26 +0100
committerMauro Carvalho Chehab2015-12-03 14:26:14 +0100
commit85f9e06c59cb93db93b163388d77d7aa9b6eed5a (patch)
tree01ce0a6007cc96a0a38294d0b1f707b157b96806 /drivers/media/platform/s5p-tv
parentMerge tag 'v4.4-rc2' into patchwork (diff)
downloadkernel-qcow2-linux-85f9e06c59cb93db93b163388d77d7aa9b6eed5a.tar.gz
kernel-qcow2-linux-85f9e06c59cb93db93b163388d77d7aa9b6eed5a.tar.xz
kernel-qcow2-linux-85f9e06c59cb93db93b163388d77d7aa9b6eed5a.zip
[media] v4l2-dv-timings: add new arg to v4l2_match_dv_timings
Add the new match_reduced_fps argument to v4l2_match_dv_timings(). Depending on the situation you may or may not desire to match the reduced_fps flag. Typically only HDMI transmitters will need to check for this flag. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/platform/s5p-tv')
-rw-r--r--drivers/media/platform/s5p-tv/hdmi_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/s5p-tv/hdmi_drv.c b/drivers/media/platform/s5p-tv/hdmi_drv.c
index a03ea98c4a2e..e71b13e40f59 100644
--- a/drivers/media/platform/s5p-tv/hdmi_drv.c
+++ b/drivers/media/platform/s5p-tv/hdmi_drv.c
@@ -627,7 +627,7 @@ static int hdmi_s_dv_timings(struct v4l2_subdev *sd,
for (i = 0; i < ARRAY_SIZE(hdmi_timings); i++)
if (v4l2_match_dv_timings(&hdmi_timings[i].dv_timings,
- timings, 0))
+ timings, 0, false))
break;
if (i == ARRAY_SIZE(hdmi_timings)) {
dev_err(dev, "timings not supported\n");