summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Edworthy <phil.edworthy@renesas.com>2013-03-11 16:23:01 +0000
committerRob Kendrick (humdrum) <rob.kendrick@codethink.co.uk>2013-06-11 11:02:43 +0100
commite87499f6149e3e1e678757010ff8ca78e06c4b7c (patch)
tree4933353c4a0a0e39ddeebb900b86095cd5006462
parent9a784da0a95f81bc485ba7f31d33e0a3ec610e92 (diff)
downloadlinux-e87499f6149e3e1e678757010ff8ca78e06c4b7c.tar.gz
ov10635: Fix analogue timing for 1280x800@30fps
At 1280x800 at 30fps, the timings previously used do not work. This change increases the HTS setting to fix it. Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
-rw-r--r--drivers/media/video/ov10635.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ov10635.c b/drivers/media/video/ov10635.c
index e6ac503a6e10..98a5e267d0b5 100644
--- a/drivers/media/video/ov10635.c
+++ b/drivers/media/video/ov10635.c
@@ -521,7 +521,7 @@ static int ov10635_get_pclk(int xvclk, int *htsmin, int *vtsmin,
if (pclk > 96000000)
continue;
- hts = *htsmin + 200 + pclk/300000;
+ hts = *htsmin + 210 + pclk/300000;
/* 2 clock cycles for every YUV422 pixel */
if (pclk < (((hts * *vtsmin)/fps_denominator)