summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2006-11-14 09:14:24 -0800
committerEric Anholt <eric@anholt.net>2006-11-14 09:14:24 -0800
commit854ff826c0031a44e874239c0b0a3533f4d9e14b (patch)
tree8b19c112a22a5d3b3f8b60345cbff4680a0be282 /src
parentd51555fba4e57c059fd184c1e54822d7e5b62a2f (diff)
Disable setup of the second SDVO device until we fix it.
Diffstat (limited to 'src')
-rw-r--r--src/i830_driver.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c
index 1f3ff0a7..344f4c0d 100644
--- a/src/i830_driver.c
+++ b/src/i830_driver.c
@@ -651,7 +651,13 @@ I830SetupOutputs(ScrnInfoPtr pScrn)
if (IS_I9XX(pI830)) {
i830_sdvo_init(pScrn, SDVOB);
- i830_sdvo_init(pScrn, SDVOC);
+
+ /* Don't initialize the second SDVO port for now. We have issues with
+ * dealing with two ports, where we stomp both SDVO channels' registers
+ * when interacting with each, channel, and commands to one SDVO
+ * device appear to be affecting the other.
+ */
+ /* i830_sdvo_init(pScrn, SDVOC); */
} else {
i830_dvo_init(pScrn);
}