summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alex@botchco.com>2008-06-01 20:47:50 -0400
committerAlex Deucher <alex@botchco.com>2008-06-01 20:47:50 -0400
commiteffa245914823371e052cd9aa1143a02350891e7 (patch)
treeb322259093ba96fedaa1d4847cab8ac389ca3b24
parent8504c6b0e40477ee544ad7f5366d569bdc53d6f0 (diff)
ATOM: disable TV-out for now
It only sort of works in NTSC mode and isn't handled correctly in all cases yet. Until we sort out the remaining details leave it disabled. See bugs: 16186, 16178, 16185
-rw-r--r--src/radeon_atombios.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c
index 5cc21d52..e71b02e8 100644
--- a/src/radeon_atombios.c
+++ b/src/radeon_atombios.c
@@ -1786,6 +1786,13 @@ RADEONGetATOMConnectorInfoFromBIOSConnectorTable (ScrnInfoPtr pScrn)
continue;
}
#endif
+#if 1
+ if (i == ATOM_DEVICE_TV1_INDEX) {
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Skipping TV-Out\n");
+ info->BiosConnector[i].valid = FALSE;
+ continue;
+ }
+#endif
info->BiosConnector[i].valid = TRUE;
info->BiosConnector[i].output_id = ci.sucI2cId.sbfAccess.bfI2C_LineMux;