summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_modes.c
diff options
context:
space:
mode:
authorFrancisco Jerez2009-08-12 02:30:09 +0200
committerDave Airlie2009-08-13 02:33:37 +0200
commit841b4117b30d544690fceb952037b1cddf14783f (patch)
tree9c5eb19e0b21d26345e88e8b0fd1e3fd70da1534 /drivers/gpu/drm/drm_modes.c
parentdrm: Define some new standard TV properties. (diff)
downloadkernel-qcow2-linux-841b4117b30d544690fceb952037b1cddf14783f.tar.gz
kernel-qcow2-linux-841b4117b30d544690fceb952037b1cddf14783f.tar.xz
kernel-qcow2-linux-841b4117b30d544690fceb952037b1cddf14783f.zip
drm: Fix drm_cvt_mode() for interlaced modes.
The calculated vdisplay was half the right value. Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_modes.c')
-rw-r--r--drivers/gpu/drm/drm_modes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c
index 6b4d2dc3cdd9..9e54925a7609 100644
--- a/drivers/gpu/drm/drm_modes.c
+++ b/drivers/gpu/drm/drm_modes.c
@@ -146,7 +146,7 @@ struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, int hdisplay,
if (margins)
vmargin = vdisplay_rnd * CVT_MARGIN_PERCENTAGE / 1000;
- drm_mode->vdisplay = vdisplay_rnd + 2 * vmargin;
+ drm_mode->vdisplay = vdisplay + 2 * vmargin;
/* Interlaced */
if (interlaced)