diff options
author | Dave Airlie <airlied@redhat.com> | 2008-12-03 11:39:04 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-12-03 11:39:04 +1000 |
commit | f231e4d9b2c683dc16f42cf09484fae926a892c1 (patch) | |
tree | 3304864f8b6dca6637b1f433ed06535be0d7c865 /src | |
parent | fe73d9a7dfe8ec5c8f1a8dc08e14b4e138aa9276 (diff) |
radeon: fix HDMI having DACs in some BIOSes
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_atombios.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 169e31bb..ddc1f39a 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1901,6 +1901,11 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) } } + /* BIOSes seem to report DAC on HDMI - they hurt me with their lies */ + if ((info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) || + (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_B)) { + info->BiosConnector[index].DACType = DAC_NONE; + } } Bool |