summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Kuehling <fxkuehl@gmx.de>2005-05-27 22:33:23 +0000
committerFelix Kuehling <fxkuehl@gmx.de>2005-05-27 22:33:23 +0000
commitc27c193f192b117232dbe39575d3d5ab7c6a1b1e (patch)
tree7e0c57c486f829e576b79ac1556cfb4c6231d717
parent3b674815e0a6d19b0719e71261c0909b92173aed (diff)
Fix for bugzilla https://bugs.freedesktop.org/show_bug.cgi?id=3414 (patchXORG-6_8_99_9
https://bugs.freedesktop.org/attachment.cgi?id=2782): Don't use RMX if we are Dell Server.
-rw-r--r--src/radeon_driver.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index 3e4564e..f817230 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -3816,7 +3816,11 @@ static Bool RADEONPreInitModes(ScrnInfoPtr pScrn, xf86Int10InfoPtr pInt10)
/* don't use RMX if we have a dual-tmds panels */
if (pRADEONEnt->MonType2 == MT_DFP)
info->ddc_mode = TRUE;
-
+ /* don't use RMX if we are Dell Server */
+ if (info->IsDellServer)
+ {
+ info->ddc_mode = TRUE;
+ }
xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"Validating modes on %s head ---------\n",
info->IsSecondary ? "Secondary" : "Primary");