* [PATCH] OMAPDSS: HDMI: Correctly compare timings
@ 2013-10-03 18:45 Richard Röjfors
2013-10-09 8:30 ` Tomi Valkeinen
0 siblings, 1 reply; 2+ messages in thread
From: Richard Röjfors @ 2013-10-03 18:45 UTC (permalink / raw)
To: linux-omap
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>
---
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c
index 82a9640..e3ea2d5 100644
--- a/drivers/video/omap2/dss/hdmi.c
+++ b/drivers/video/omap2/dss/hdmi.c
@@ -391,7 +391,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",
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] OMAPDSS: HDMI: Correctly compare timings
2013-10-03 18:45 [PATCH] OMAPDSS: HDMI: Correctly compare timings Richard Röjfors
@ 2013-10-09 8:30 ` Tomi Valkeinen
0 siblings, 0 replies; 2+ messages in thread
From: Tomi Valkeinen @ 2013-10-09 8:30 UTC (permalink / raw)
To: Richard Röjfors, linux-omap
[-- Attachment #1: Type: text/plain, Size: 1016 bytes --]
On 03/10/13 21:45, Richard Röjfors wrote:
> 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>
> ---
> diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c
> index 82a9640..e3ea2d5 100644
> --- a/drivers/video/omap2/dss/hdmi.c
> +++ b/drivers/video/omap2/dss/hdmi.c
> @@ -391,7 +391,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",
>
Thanks, queuing for 3.13.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-09 8:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-03 18:45 [PATCH] OMAPDSS: HDMI: Correctly compare timings Richard Röjfors
2013-10-09 8:30 ` Tomi Valkeinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).