From: Chris Wilson Date: Tue, 14 Dec 2010 20:06:20 +0000 (+0000) Subject: drm/i915/bios: Reverse order of 100/120 Mhz SSC clocks X-Git-Tag: v2.6.37-rc8~26^2~11^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=448f53a1ede54eb854d036abf54573281412d650;p=platform%2Fkernel%2Flinux-3.10.git drm/i915/bios: Reverse order of 100/120 Mhz SSC clocks Fixes the lack of output on the LVDS panel of the Lenovo U160. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=31596 Reported-and-tested-by: Dirk Gouders Cc: stable@kernel.org Signed-off-by: Chris Wilson --- diff --git a/drivers/gpu/drm/i915/intel_bios.c b/drivers/gpu/drm/i915/intel_bios.c index b0b1200..2b20786 100644 --- a/drivers/gpu/drm/i915/intel_bios.c +++ b/drivers/gpu/drm/i915/intel_bios.c @@ -270,7 +270,7 @@ parse_general_features(struct drm_i915_private *dev_priv, general->ssc_freq ? 66 : 48; else if (IS_GEN5(dev) || IS_GEN6(dev)) dev_priv->lvds_ssc_freq = - general->ssc_freq ? 100 : 120; + general->ssc_freq ? 120 : 100; else dev_priv->lvds_ssc_freq = general->ssc_freq ? 100 : 96;