xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Thu Apr 16 13:43:33 PDT 2009


 src/radeon_pm.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit efa1476fc0765b53298624198137dc5cc71d37a8
Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Thu Apr 16 16:43:02 2009 -0400

    PM: fix reversed logic in pm block handler

diff --git a/src/radeon_pm.c b/src/radeon_pm.c
index 8147786..bf8fecf 100644
--- a/src/radeon_pm.c
+++ b/src/radeon_pm.c
@@ -788,8 +788,9 @@ void RADEONPMBlockHandler(ScrnInfoPtr pScrn)
     }
 
     if (i == xf86_config->num_crtc)
-	RADEONSetStaticPowerMode(pScrn, POWER_HIGH);
-    else
 	RADEONSetStaticPowerMode(pScrn, POWER_LOW);
+    else
+	RADEONSetStaticPowerMode(pScrn, POWER_HIGH);
+
 }
 


More information about the xorg-commit mailing list