xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Tue Oct 2 16:38:32 PDT 2007


 src/radeon_display.c |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
diff-tree 0ca184c3c35032df39ea7ce5d2d4aba1a97b6426 (from a5fb2a5d54cdd562a97881cdea1a4af35b483aab)
Author: Alex Deucher <alex at botch2.(none)>
Date:   Tue Oct 2 19:38:18 2007 -0400

    RADEON: fix RADEONInitDispBandwidth() on single crtc cards
    
    Should fix bug 12490

diff --git a/src/radeon_display.c b/src/radeon_display.c
index 7f599e6..5c4fbfa 100644
--- a/src/radeon_display.c
+++ b/src/radeon_display.c
@@ -791,6 +791,11 @@ void RADEONInitDispBandwidth(ScrnInfoPtr
 	mode1 = &xf86_config->crtc[1]->mode;
       } else
 	return;
+    } else {
+	if (xf86_config->crtc[0]->enabled)
+	    mode1 = &xf86_config->crtc[0]->mode;
+	else
+	    return;
     }
 
     RADEONInitDispBandwidth2(pScrn, info, pixel_bytes2, mode1, mode2);


More information about the xorg-commit mailing list