diff options
author | Adam Jackson <ajax@redhat.com> | 2009-06-24 17:05:47 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-06-24 17:05:47 -0400 |
commit | 96581746eea2f4e29a04f9266ec9649f25480424 (patch) | |
tree | 284b2ee3b49daccf7a3a38ad4c9caa384388b2fb /src/radeon_atombios.c | |
parent | 496adc4dc7cf53fc6acfecb1158f1491d5f36168 (diff) |
atom: Fix phantom VGA connector when HDMI-B present.
HDMI-B is really a glorified DL-DVI connector, the analog pins work fine.
Diffstat (limited to 'src/radeon_atombios.c')
-rw-r--r-- | src/radeon_atombios.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 6375626d..e6542288 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1644,8 +1644,7 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) /* some BIOSes seem to report DAC on HDMI - usually this is a board with * HDMI + VGA reporting as HDMI */ - if ((info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) || - (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_B)) { + if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) { if (info->BiosConnector[index].devices & (ATOM_DEVICE_CRT_SUPPORT)) { info->BiosConnector[index].devices &= ~(ATOM_DEVICE_DFP_SUPPORT); info->BiosConnector[index].ConnectorType = CONNECTOR_VGA; |