From 4c35807736c5ae8de2ba8bc1d5abcffd6e6a6cd8 Mon Sep 17 00:00:00 2001 From: Matt Sealey Date: Mon, 31 Jan 2011 03:06:19 -0600 Subject: [PATCH] siihdmi: cull modes with inadequate lower_margin rather than vsync_len --- drivers/video/mxc/siihdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/mxc/siihdmi.c b/drivers/video/mxc/siihdmi.c index 29417a5c148..0b4ccdaadde 100644 --- a/drivers/video/mxc/siihdmi.c +++ b/drivers/video/mxc/siihdmi.c @@ -658,7 +658,7 @@ static void siihdmi_sanitize_modelist(struct siihdmi_tx * const tx) DEBUG("Removing mode %ux%u@%u (exceeds pixclk limit)\n", mode->xres, mode->yres, mode->refresh); remove = true; - } else if (mode->vsync_len < 2) { + } else if (mode->lower_margin < 2) { /* * HDMI specification requires at least 2 lines of * vertical sync (sect. 5.1.2).