summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTormod Volden <bugzi06.fdo.tormod@xoxy.net>2007-10-05 20:05:54 -0400
committerAlex Deucher <alex@botch2.(none)>2007-10-05 20:05:54 -0400
commit314e8fdbe5369e4c1786d176d03d0d2a046f25d5 (patch)
treeb42354ace41ffa8fa2e05629c3cd5e1856aeb567 /src
parentabbafe6db7c0d24efc61a05950d4214c00d3f043 (diff)
RADEON: Disable DRI by default for RS482 cards
fixes bug 12048
Diffstat (limited to 'src')
-rw-r--r--src/radeon_driver.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index 6f8a753..e247f1d 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -2085,10 +2085,11 @@ static Bool RADEONPreInitDRI(ScrnInfoPtr pScrn)
if (info->Chipset == PCI_CHIP_RN50_515E ||
info->Chipset == PCI_CHIP_RN50_5969 ||
info->Chipset == PCI_CHIP_RC410_5A61 ||
- info->Chipset == PCI_CHIP_RC410_5A62) {
+ info->Chipset == PCI_CHIP_RC410_5A62 ||
+ info->Chipset == PCI_CHIP_RS482_5975) {
if (xf86ReturnOptValBool(info->Options, OPTION_DRI, FALSE)) {
xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
- "Direct rendering for RN50/RC410 forced on -- "
+ "Direct rendering for RN50/RC410/RS482 forced on -- "
"This is NOT officially supported at the hardware level "
"and may cause instability or lockups\n");
} else {