diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-11-06 15:46:43 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-11-06 15:46:43 -0500 |
commit | 902eaf768142c6c7dcc487e10775027b84cd1f9a (patch) | |
tree | c4627cc05e49cd3f137e93221b8904760d12191e /src/radeon_bios.c | |
parent | 44abaa0ea8e5e3bbe833fa73e6d011618bb6d7e7 (diff) |
Check for LVDS on all IGP chips
- fixes bug 18395
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 6 |
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; |