diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-02-05 10:34:55 +0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@hobbes.virtuousgeek.org> | 2008-02-05 11:07:02 -0800 |
commit | 58cb85a7e4c760adc78128bdf605b7885ac32538 (patch) | |
tree | b106955f97614c5119c01be43513807de146b8e5 | |
parent | 7e6b43960979829946669314d6523573f79e207d (diff) |
Fix last commit on i8xx debug p2 value
-rw-r--r-- | src/i830_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i830_debug.c b/src/i830_debug.c index 7fc07261..5e9dafae 100644 --- a/src/i830_debug.c +++ b/src/i830_debug.c @@ -192,9 +192,9 @@ DEBUGSTRING(i830_debug_dpll) p1 = ffs((val & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >> DPLL_FPA01_P1_POST_DIV_SHIFT); if ((INREG(LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP) - p2 = I8XX_P2_LVDS_SLOW; + p2 = 7; else - p2 = I8XX_P2_LVDS_FAST; + p2 = 14; } else { mode = "DAC/serial"; |