Set SSC frequency for 8xx chips correctly

All 8xx class chips have the 66/48 split, not just 855.

Fixes #18358.
This commit is contained in:
Ma Ling 2009-03-19 09:10:19 -07:00 committed by Jesse Barnes
parent bedc894a56
commit 85e6b52858
1 changed files with 1 additions and 1 deletions

View File

@ -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;