diff options
author | Adam Jackson <ajax@redhat.com> | 2010-10-14 14:37:34 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2010-10-14 14:37:34 -0400 |
commit | 0f37458c253aec46d98db6661c4def711df8fc17 (patch) | |
tree | 2fc3e47db12fbc10ec25713807884070f2cf18bd | |
parent | 2918df3a312fc600e83f84c298b9653d2eb3a8d5 (diff) |
Don't allow the config file to override BIOS location
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | src/radeon_driver.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 6efb1729..9e72c2db 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1948,14 +1948,6 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) /* BIOS */ from = X_PROBED; info->BIOSAddr = info->PciInfo->biosBase & 0xfffe0000; - if (dev->BiosBase) { - xf86DrvMsg(pScrn->scrnIndex, X_INFO, - "BIOS address override, using 0x%08lx instead of 0x%08lx\n", - (unsigned long)dev->BiosBase, - (unsigned long)info->BIOSAddr); - info->BIOSAddr = dev->BiosBase; - from = X_CONFIG; - } if (info->BIOSAddr) { xf86DrvMsg(pScrn->scrnIndex, from, "BIOS at 0x%08lx\n", (unsigned long)info->BIOSAddr); |