summaryrefslogtreecommitdiff
path: root/x11/xf86-video-intel/patches
diff options
context:
space:
mode:
authortaca <taca>2008-11-15 08:24:25 +0000
committertaca <taca>2008-11-15 08:24:25 +0000
commit7b709bfdd9d65393406671b10961e57d9bb8c568 (patch)
treeb6648f56927a1b604f25495e5eab2be226ebdb57 /x11/xf86-video-intel/patches
parentbe78cee4b7d9fcd0e59e74c5a66d78d491501c3e (diff)
downloadpkgsrc-7b709bfdd9d65393406671b10961e57d9bb8c568.tar.gz
Update xf86-video-intel package to 2.4.3.
Here is the message on xorg-announce. Hopefully this is the last 2.4.x release. This one just includes a few changes relative to 2.4.2, but the G4x stolen memory bit is an important one. Adam Jackson (1): Quirk: No LVDS on Dell Studio Hybrid Carl Worth (1): Disable frame buffer compression by default for GM965. Eric Anholt (1): Fix broken stolen memory counting on G4X. Jesse Barnes (3): Don't allocate a pipe for hotplug detection Add a few programs to .gitignore Update version to 2.4.3 for release Zhenyu Wang (3): Disable render standby Add backlight kernel method support on Asus and Eeepc quirk LVDS on Asus Eee box
Diffstat (limited to 'x11/xf86-video-intel/patches')
-rw-r--r--x11/xf86-video-intel/patches/patch-ac54
1 files changed, 0 insertions, 54 deletions
diff --git a/x11/xf86-video-intel/patches/patch-ac b/x11/xf86-video-intel/patches/patch-ac
deleted file mode 100644
index 26068df3482..00000000000
--- a/x11/xf86-video-intel/patches/patch-ac
+++ /dev/null
@@ -1,54 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2008/09/19 14:56:00 tnn Exp $
-
-https://bugs.freedesktop.org/show_bug.cgi?id=17405
-
---- src/i830_crt.c
-+++ src/i830_crt.c
-@@ -352,10 +352,9 @@ i830_crt_detect(xf86OutputPtr output)
- xf86OutputStatus status;
- Bool connected;
-
-- crtc = i830GetLoadDetectPipe (output, NULL, &dpms_mode);
-- if (!crtc)
-- return XF86OutputStatusUnknown;
--
-+ /*
-+ * Try hotplug detection where supported
-+ */
- if (IS_I945G(pI830) || IS_I945GM(pI830) || IS_I965G(pI830) ||
- IS_G33CLASS(pI830)) {
- if (i830_crt_detect_hotplug(output))
-@@ -363,12 +362,19 @@ i830_crt_detect(xf86OutputPtr output)
- else
- status = XF86OutputStatusDisconnected;
-
-- goto out;
-+ goto done;
- }
-
-+ /*
-+ * DDC is next best, no flicker
-+ */
-+ crtc = i830GetLoadDetectPipe (output, NULL, &dpms_mode);
-+ if (!crtc)
-+ return XF86OutputStatusUnknown;
-+
- if (i830_crt_detect_ddc(output)) {
- status = XF86OutputStatusConnected;
-- goto out;
-+ goto out_release_pipe;
- }
-
- /* Use the load-detect method if we have no other way of telling. */
-@@ -378,9 +384,10 @@ i830_crt_detect(xf86OutputPtr output)
- else
- status = XF86OutputStatusDisconnected;
-
--out:
-+out_release_pipe:
- i830ReleaseLoadDetectPipe (output, dpms_mode);
-
-+done:
- return status;
- }
-