diff options
author | Hans Verkuil | 2013-08-19 08:07:26 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab | 2013-08-24 04:27:09 -0300 |
commit | fe9c2564d80d633d08a2d69fe38598c06a0ddfb2 (patch) | |
tree | 80b3b328610952d062a1ddcc0e417db350eab0e6 /drivers/media/i2c/adv7604.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/adv7604.c')
-rw-r--r-- | drivers/media/i2c/adv7604.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/adv7604.c b/drivers/media/i2c/adv7604.c index a1a9d1e805f0..5b54ba1465e1 100644 --- a/drivers/media/i2c/adv7604.c +++ b/drivers/media/i2c/adv7604.c @@ -1162,7 +1162,7 @@ static int adv7604_dv_timings_cap(struct v4l2_subdev *sd, cap->type = V4L2_DV_BT_656_1120; cap->bt.max_width = 1920; cap->bt.max_height = 1200; - cap->bt.min_pixelclock = 27000000; + cap->bt.min_pixelclock = 25000000; if (DIGITAL_INPUT) cap->bt.max_pixelclock = 225000000; else |