xf86-video-intel: src/i830_bios.c

Jesse Barnes jbarnes at kemper.freedesktop.org
Thu Mar 19 09:10:59 PDT 2009


 src/i830_bios.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 85e6b528582c2397ee9eb2132cd0d05ce12eb43d
Author: Ma Ling <ling.ma at intel.com>
Date:   Thu Mar 19 09:10:19 2009 -0700

    Set SSC frequency for 8xx chips correctly
    
    All 8xx class chips have the 66/48 split, not just 855.
    
    Fixes #18358.

diff --git a/src/i830_bios.c b/src/i830_bios.c
index 7f20553..9b13bf4 100644
--- a/src/i830_bios.c
+++ b/src/i830_bios.c
@@ -161,7 +161,7 @@ parse_general_features(I830Ptr pI830, struct bdb_header *bdb)
     pI830->tv_present = general->int_tv_support;
     pI830->lvds_use_ssc = general->enable_ssc;
     if (pI830->lvds_use_ssc) {
-	if (IS_I855(pI830))
+	if (IS_I85X(pI830))
 	    pI830->lvds_ssc_freq = general->ssc_freq ? 66 : 48;
 	else
 	    pI830->lvds_ssc_freq = general->ssc_freq ? 100 : 96;


More information about the xorg-commit mailing list