summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alex@botch2.com>2008-05-29 02:31:00 -0400
committerAlex Deucher <alex@botch2.com>2008-05-29 02:31:00 -0400
commit714b2c63ec1c4a1410a6d521c03e9d1f90937c01 (patch)
tree0a621026118ee38d87bc369bdd39b5381ba729fb
parente20b08525a64888287ec4a369d8f7dbde95c655d (diff)
RADEON: don't enable legacy bios table based init yet
Needs more work and we need to figure out how best to decide when to use it.
-rw-r--r--src/radeon_bios.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c
index fa8305ce..529dda7f 100644
--- a/src/radeon_bios.c
+++ b/src/radeon_bios.c
@@ -378,7 +378,9 @@ RADEONGetBIOSInfo(ScrnInfoPtr pScrn, xf86Int10InfoPtr pInt10)
GET_REF_CLOCK, &atomBiosArg);
info->MasterDataStart = RADEON_BIOS16 (info->ROMHeaderStart + 32);
- } else {
+ }
+#if 0
+ else {
/* non-primary card may need posting */
if (!pInt10) {
xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Attempting to POST via BIOS tables\n");
@@ -386,7 +388,7 @@ RADEONGetBIOSInfo(ScrnInfoPtr pScrn, xf86Int10InfoPtr pInt10)
RADEONPostCardFromBIOSTables(pScrn);
}
}
-
+#endif
return TRUE;
}