summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@hobbes.virtuousgeek.org>2008-01-10 14:25:18 -0800
committerJesse Barnes <jbarnes@hobbes.virtuousgeek.org>2008-01-10 14:25:18 -0800
commitb5cf8faf8102e6313c23de87a680cc327ac95478 (patch)
tree6f341bbdf94842641583a72948601e15ba203180
parent3c22ed633be2ac96eea7bc533839e956f1f31b84 (diff)
downloadxorg-driver-xf86-video-intel-b5cf8faf8102e6313c23de87a680cc327ac95478.tar.gz
Remove unnecessary quirk code in CRT probing
Since we return early in the CRTC DPMS code, keeping the pipes & clocks enabled, this code is no longer necessary. As an added bonus, VGA connections should be reported correctly even when the pipe A quirk is active. Updates fix for fdo bz #11432.
-rw-r--r--src/i830_crt.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/i830_crt.c b/src/i830_crt.c
index 3f0fc463..82a774aa 100644
--- a/src/i830_crt.c
+++ b/src/i830_crt.c
@@ -381,13 +381,6 @@ i830_crt_detect(xf86OutputPtr output)
out:
i830ReleaseLoadDetectPipe (output, dpms_mode);
- /* Needed for some machines where the BIOS pokes at pipe A */
- if (pI830->quirk_flag & QUIRK_PIPEA_FORCE) {
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Overriding VGA detection, "
- "forcing pipe A on.\n");
- status = XF86OutputStatusConnected;
- }
-
return status;
}