summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2008-11-06 15:46:43 -0500
committerAlex Deucher <alexdeucher@gmail.com>2008-11-06 15:46:43 -0500
commit902eaf768142c6c7dcc487e10775027b84cd1f9a (patch)
treec4627cc05e49cd3f137e93221b8904760d12191e
parent44abaa0ea8e5e3bbe833fa73e6d011618bb6d7e7 (diff)
Check for LVDS on all IGP chips
- fixes bug 18395
-rw-r--r--src/radeon_bios.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c
index 22bb5ed8..89c816c3 100644
--- a/src/radeon_bios.c
+++ b/src/radeon_bios.c
@@ -615,10 +615,8 @@ static Bool RADEONGetLegacyConnectorInfoFromBIOS (ScrnInfoPtr pScrn)
}
/* check LVDS table */
- /* RS4xx can be mobile or desktop so check the connectors */
- if (info->IsMobility ||
- info->ChipFamily == CHIP_FAMILY_RS400 ||
- info->ChipFamily == CHIP_FAMILY_RS480) {
+ /* IGP can be mobile or desktop so check the connectors */
+ if (info->IsMobility || info->IsIGP) {
offset = RADEON_BIOS16(info->ROMHeaderStart + 0x40);
if (offset) {
info->BiosConnector[4].valid = TRUE;