aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2011-02-07 08:41:18 +1000
committerBen Skeggs <bskeggs@redhat.com>2011-02-17 09:40:03 +1000
commit0d9b6193bcc335fb05a26af5b11a0d76b70cb1a4 (patch)
treea03f1f7c54276a3b60a7c41e989e22142f05cb8c /drivers
parentdrm/nouveau: Fix detection of DDC-based LVDS on DCB15 boards. (diff)
downloadlinux-dev-0d9b6193bcc335fb05a26af5b11a0d76b70cb1a4.tar.xz
linux-dev-0d9b6193bcc335fb05a26af5b11a0d76b70cb1a4.zip
drm/nouveau: fix non-EDIDful native mode selection
The DRM core fills this value, but at too late a stage for this to work, possibly resulting in an undesirable mode being selected. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_connector.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_connector.c b/drivers/gpu/drm/nouveau/nouveau_connector.c
index a21e00076839..390d82c3c4b0 100644
--- a/drivers/gpu/drm/nouveau/nouveau_connector.c
+++ b/drivers/gpu/drm/nouveau/nouveau_connector.c
@@ -507,6 +507,7 @@ nouveau_connector_native_mode(struct drm_connector *connector)
int high_w = 0, high_h = 0, high_v = 0;
list_for_each_entry(mode, &nv_connector->base.probed_modes, head) {
+ mode->vrefresh = drm_mode_vrefresh(mode);
if (helper->mode_valid(connector, mode) != MODE_OK ||
(mode->flags & DRM_MODE_FLAG_INTERLACE))
continue;