summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMa Ling <ling.ma@intel.com>2009-03-19 09:10:19 -0700
committerJesse Barnes <jbarnes@nietzche.localdomain>2009-03-19 09:10:19 -0700
commit85e6b528582c2397ee9eb2132cd0d05ce12eb43d (patch)
treeac1963b075eeae2fc785b91ae669f442c33a9157
parentbedc894a565ce3c7a50990e3f78953fc2432ad40 (diff)
Set SSC frequency for 8xx chips correctly
All 8xx class chips have the 66/48 split, not just 855. Fixes #18358.
-rw-r--r--src/i830_bios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_bios.c b/src/i830_bios.c
index 7f20553a..9b13bf40 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;