From 5202e45a52df71fa9cbb8efed8ae1a39e9cd632a Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sat, 5 Dec 2015 11:47:15 -0600 Subject: [PATCH] intel_extreme: Improve LVDS CLKB desire detection --- src/add-ons/accelerants/intel_extreme/Ports.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/accelerants/intel_extreme/Ports.cpp b/src/add-ons/accelerants/intel_extreme/Ports.cpp index e6700f2486..4dea0dc869 100644 --- a/src/add-ons/accelerants/intel_extreme/Ports.cpp +++ b/src/add-ons/accelerants/intel_extreme/Ports.cpp @@ -524,7 +524,7 @@ LVDSPort::SetDisplayMode(display_mode* target, uint32 colorMode) // Set the B0-B3 data pairs corresponding to whether we're going to // set the DPLLs for dual-channel mode or not. - if (divisors.post2 == LVDS_POST2_RATE_FAST) + if (divisors.post2_high) lvds |= LVDS_B0B3PAIRS_POWER_UP | LVDS_CLKB_POWER_UP; else lvds &= ~(LVDS_B0B3PAIRS_POWER_UP | LVDS_CLKB_POWER_UP);