From c7c3bcda8c43b0281a85ab70c9f8eb43b1d7f10c Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Thu, 12 Nov 2015 15:43:25 -0600 Subject: [PATCH] intel_extreme: Revert unintended change in 222f5929 --- src/add-ons/accelerants/intel_extreme/DisplayPipe.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/accelerants/intel_extreme/DisplayPipe.cpp b/src/add-ons/accelerants/intel_extreme/DisplayPipe.cpp index b1e4bbf05a..ce0e3ad927 100644 --- a/src/add-ons/accelerants/intel_extreme/DisplayPipe.cpp +++ b/src/add-ons/accelerants/intel_extreme/DisplayPipe.cpp @@ -196,11 +196,11 @@ DisplayPipe::ConfigureTimings(const pll_divisors& divisors, uint32 pixelClock, << DISPLAY_PLL_IGD_POST1_DIVISOR_SHIFT) & DISPLAY_PLL_IGD_POST1_DIVISOR_MASK; } else { - // pll |= ((1 << (divisors.post1 - 1)) - // << DISPLAY_PLL_POST1_DIVISOR_SHIFT) - // & DISPLAY_PLL_9xx_POST1_DIVISOR_MASK; - pll |= ((divisors.post1 - 1) << DISPLAY_PLL_POST1_DIVISOR_SHIFT) + pll |= ((1 << (divisors.post1 - 1)) + << DISPLAY_PLL_POST1_DIVISOR_SHIFT) & DISPLAY_PLL_9xx_POST1_DIVISOR_MASK; + // pll |= ((divisors.post1 - 1) << DISPLAY_PLL_POST1_DIVISOR_SHIFT) + // & DISPLAY_PLL_9xx_POST1_DIVISOR_MASK; } if (divisors.post2_high) pll |= DISPLAY_PLL_DIVIDE_HIGH;