Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] linux-patches r1727 - genpatches-2.6/trunk/2.6.34
Date: Fri, 30 Jul 2010 13:02:32
Message-Id: 20100730125114.7E0012CF37@corvid.gentoo.org
1 Author: mpagano
2 Date: 2010-07-30 12:51:12 +0000 (Fri, 30 Jul 2010)
3 New Revision: 1727
4
5 Added:
6 genpatches-2.6/trunk/2.6.34/2730_i915-PLL-permissive-search-fix.patch
7 Modified:
8 genpatches-2.6/trunk/2.6.34/0000_README
9 Log:
10 Fix to make G4X-style PLL search more permissive for i915
11
12 Modified: genpatches-2.6/trunk/2.6.34/0000_README
13 ===================================================================
14 --- genpatches-2.6/trunk/2.6.34/0000_README 2010-07-28 22:23:02 UTC (rev 1726)
15 +++ genpatches-2.6/trunk/2.6.34/0000_README 2010-07-30 12:51:12 UTC (rev 1727)
16 @@ -50,11 +50,15 @@
17 Patch: 2700_nouveau-acpi-lid-open-undefined-fix.patch
18 From: http://bugs.gentoo.org/show_bug.cgi?id=322001
19 Desc: nouveau: fix acpi_lid_open undefined
20 -8
21 +
22 Patch: 2720_vbfb-section-cleanup.patch
23 From: http://lkml.org/lkml/2010/6/25/271
24 Desc: add missing define to prevent re-define errors in vgaarb.h
25
26 +Patch: 2730_i915-PLL-permissive-search-fix.patch
27 +From: http://bugs.gentoo.org/show_bug.cgi?id=325619
28 +Desc: Make G4X-style PLL search more permissive
29 +
30 Patch: 2900_xconfig-with-qt4.patch
31 From: http://bugs.gentoo.org/show_bug.cgi?id=320761
32 Desc: xconfig patch for qt4 - thanks to Sam Iam
33
34 Added: genpatches-2.6/trunk/2.6.34/2730_i915-PLL-permissive-search-fix.patch
35 ===================================================================
36 --- genpatches-2.6/trunk/2.6.34/2730_i915-PLL-permissive-search-fix.patch (rev 0)
37 +++ genpatches-2.6/trunk/2.6.34/2730_i915-PLL-permissive-search-fix.patch 2010-07-30 12:51:12 UTC (rev 1727)
38 @@ -0,0 +1,13 @@
39 +--- a/drivers/gpu/drm/i915/intel_display.c 2010-07-30 08:40:58.000000000 -0400
40 ++++ b/drivers/gpu/drm/i915/intel_display.c 2010-07-30 08:42:12.000000000 -0400
41 +@@ -880,8 +880,8 @@ intel_g4x_find_best_PLL(const intel_limi
42 + intel_clock_t clock;
43 + int max_n;
44 + bool found;
45 +- /* approximately equals target * 0.00488 */
46 +- int err_most = (target >> 8) + (target >> 10);
47 ++ /* approximately equals target * 0.00585 */
48 ++ int err_most = (target >> 8) + (target >> 9);
49 + found = false;
50 +
51 + if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {