]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - pkgs/xorg-x11-drv-intel/patches/intel-2.11.0-vga-clock-max.patch
Change file layout of the makefiles.
[people/amarx/ipfire-3.x.git] / pkgs / xorg-x11-drv-intel / patches / intel-2.11.0-vga-clock-max.patch
1 diff -up xf86-video-intel-2.11.0/src/drmmode_display.c.jx xf86-video-intel-2.11.0/src/drmmode_display.c
2 --- xf86-video-intel-2.11.0/src/drmmode_display.c.jx 2010-04-16 10:28:08.000000000 -0400
3 +++ xf86-video-intel-2.11.0/src/drmmode_display.c 2010-04-26 15:28:58.000000000 -0400
4 @@ -689,6 +689,12 @@ drmmode_output_mode_valid(xf86OutputPtr
5 else
6 return MODE_OK;
7 }
8 +
9 + /* I don't actually believe any VGA is this good */
10 + if (koutput->connector_type == DRM_MODE_CONNECTOR_VGA)
11 + if (pModes->Clock > 250000)
12 + return MODE_CLOCK_HIGH;
13 +
14 return MODE_OK;
15 }
16