aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/wm8505fb.c
diff options
context:
space:
mode:
authorAlexey Charkov <alchark@gmail.com>2010-12-20 16:09:57 +0300
committerPaul Mundt <lethal@linux-sh.org>2010-12-21 01:05:48 +0900
commit623eb15647fc35c5a8cd38985d5958240eb072c1 (patch)
treeb9fbf698052bc94384dc990b25838d8641cb8705 /drivers/video/wm8505fb.c
parenta7f53284e97af9670a68993c31f61a4e62a19ea5 (diff)
fbdev: Modify vsync timing calculation in wm8505fb
This removes the '+1' in vsync timing calculation for wm8505fb to directly use values provided from the board setup code. Signed-off-by: Alexey Charkov <alchark@gmail.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/wm8505fb.c')
-rw-r--r--drivers/video/wm8505fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c
index 9ca9dbb62f9..96e34a56916 100644
--- a/drivers/video/wm8505fb.c
+++ b/drivers/video/wm8505fb.c
@@ -88,7 +88,7 @@ static int wm8505fb_set_timing(struct fb_info *info)
int v_start = info->var.upper_margin;
int v_end = v_start + info->var.yres;
int v_all = v_end + info->var.lower_margin;
- int v_sync = info->var.vsync_len + 1;
+ int v_sync = info->var.vsync_len;
writel(0, fbi->regbase + WMT_GOVR_TG);