]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
drm: work around EDIDs with bad htotal/vtotal values
authorJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 5 Nov 2009 18:12:54 +0000 (10:12 -0800)
committerDave Airlie <airlied@redhat.com>
Tue, 24 Nov 2009 03:01:53 +0000 (13:01 +1000)
We did this on the userspace side, but we need a similar fix for the
kernel.

Fixes LP #460664.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Cc: stable@kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_edid.c

index cea665d86dd387e3515b0ed1a1fb310d1ac15075..b54ba63d506e0350abbf53acd50420cbeb79f7c3 100644 (file)
@@ -662,6 +662,12 @@ static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
                return NULL;
        }
 
+       /* Some EDIDs have bogus h/vtotal values */
+       if (mode->hsync_end > mode->htotal)
+               mode->htotal = mode->hsync_end + 1;
+       if (mode->vsync_end > mode->vtotal)
+               mode->vtotal = mode->vsync_end + 1;
+
        drm_mode_set_name(mode);
 
        if (pt->misc & DRM_EDID_PT_INTERLACED)