]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
OMAPDSS: HDMI: Correctly compare timings
authorRichard Röjfors <richard.rojfors@gmail.com>
Thu, 3 Oct 2013 18:45:19 +0000 (20:45 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 9 Oct 2013 09:42:41 +0000 (12:42 +0300)
There is currently a copy and paste error where the hdmi vsync timings are not
compared correctly, this patch fixes this.

Signed-off-by: Richard Röjfors <richard.rojfors@gmail.com>
[tomi.valkeinen@ti.com: fixed to apply on top of latest tree]
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/hdmi_common.c

index 6f727c85885739a56133d12054e806ab42647f99..5586aaad9d6340433e567e7f9cd84d886efd970b 100644 (file)
@@ -283,7 +283,7 @@ static bool hdmi_timings_compare(struct omap_video_timings *timing1,
                timing2_hsync = timing2->hfp + timing2->hsw + timing2->hbp;
                timing1_hsync = timing1->hfp + timing1->hsw + timing1->hbp;
                timing2_vsync = timing2->vfp + timing2->vsw + timing2->vbp;
-               timing1_vsync = timing2->vfp + timing2->vsw + timing2->vbp;
+               timing1_vsync = timing1->vfp + timing1->vsw + timing1->vbp;
 
                DSSDBG("timing1_hsync = %d timing1_vsync = %d"\
                        "timing2_hsync = %d timing2_vsync = %d\n",