diff options
author | Dave Airlie <airlied@redhat.com> | 2007-11-23 11:55:05 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2007-11-23 11:55:05 +1000 |
commit | dbf6eae7e7a4bd1bc60fefdc7ab6276ed3f097c4 (patch) | |
tree | bd1865f92dfc35c73136d34a5d4f769bb30256b0 /src/radeon_bios.c | |
parent | 6b103915c11fc79d2efc43c44fc2a00c3bc64ede (diff) |
atombios: add initial object header parsing for r600 cards
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 373659ad..293172b8 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -206,6 +206,9 @@ static Bool RADEONGetATOMConnectorInfoFromBIOS (ScrnInfoPtr pScrn) int offset, i, j, tmp, tmp0, id, portinfo, gpio; if (!info->VBIOS) return FALSE; + + if (RADEONGetATOMConnectorInfoFromBIOSObject(pScrn)) + return TRUE; offset = RADEON_BIOS16(info->MasterDataStart + 22); |