diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-08-19 08:07:26 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-08-24 04:27:09 -0300 |
commit | fe9c2564d80d633d08a2d69fe38598c06a0ddfb2 (patch) | |
tree | 80b3b328610952d062a1ddcc0e417db350eab0e6 /drivers/media/i2c/ad9389b.c | |
parent | ef1ed8f5d366a035e532456bd747d34e5cb01ee5 (diff) |
[media] adv7604/ad9389b/ths8200: decrease min_pixelclock to 25MHz
The CEA-861 standard allows for the 640x480 format at 25.175 MHz.
Ensure that that's allowed according to the struct v4l2_bt_timings_cap.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/i2c/ad9389b.c')
-rw-r--r-- | drivers/media/i2c/ad9389b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ad9389b.c b/drivers/media/i2c/ad9389b.c index 1c6d352acfa0..bb74fb6b35c7 100644 --- a/drivers/media/i2c/ad9389b.c +++ b/drivers/media/i2c/ad9389b.c @@ -631,7 +631,7 @@ static const struct v4l2_dv_timings_cap ad9389b_timings_cap = { .bt = { .max_width = 1920, .max_height = 1200, - .min_pixelclock = 27000000, + .min_pixelclock = 25000000, .max_pixelclock = 170000000, .standards = V4L2_DV_BT_STD_CEA861 | V4L2_DV_BT_STD_DMT | V4L2_DV_BT_STD_GTF | V4L2_DV_BT_STD_CVT, |