Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] linux-patches r1717 - genpatches-2.6/trunk/2.6.34
Date: Fri, 25 Jun 2010 20:45:53
Message-Id: 20100625204551.394F42CF69@corvid.gentoo.org
1 Author: mpagano
2 Date: 2010-06-25 20:45:50 +0000 (Fri, 25 Jun 2010)
3 New Revision: 1717
4
5 Added:
6 genpatches-2.6/trunk/2.6.34/2720_vgarrb-add-missing-define.patch
7 Modified:
8 genpatches-2.6/trunk/2.6.34/0000_README
9 Log:
10 Add missing define to prevent re-define errors in vgaarb.h
11
12 Modified: genpatches-2.6/trunk/2.6.34/0000_README
13 ===================================================================
14 --- genpatches-2.6/trunk/2.6.34/0000_README 2010-06-16 20:07:15 UTC (rev 1716)
15 +++ genpatches-2.6/trunk/2.6.34/0000_README 2010-06-25 20:45:50 UTC (rev 1717)
16 @@ -47,6 +47,10 @@
17 From: http://bugs.gentoo.org/show_bug.cgi?id=323021
18 Desc: Fix errors issued by modpost in vfb driver
19
20 +Patch: 2720_vbfb-section-cleanup.patch
21 +From: http://lkml.org/lkml/2010/6/25/271
22 +Desc: add missing define to prevent re-define errors in vgaarb.h
23 +
24 Patch: 2900_xconfig-with-qt4.patch
25 From: http://bugs.gentoo.org/show_bug.cgi?id=320761
26 Desc: xconfig patch for qt4 - thanks to Sam Iam
27
28 Added: genpatches-2.6/trunk/2.6.34/2720_vgarrb-add-missing-define.patch
29 ===================================================================
30 --- genpatches-2.6/trunk/2.6.34/2720_vgarrb-add-missing-define.patch (rev 0)
31 +++ genpatches-2.6/trunk/2.6.34/2720_vgarrb-add-missing-define.patch 2010-06-25 20:45:50 UTC (rev 1717)
32 @@ -0,0 +1,19 @@
33 +vgaarb.h was missing the #define of the #ifndef at the top for the guard
34 +to prevent multiple #include's from causing re-define errors
35 +
36 +Signed-off-by: Doug Goldstein <cardoe@g.o>
37 +---
38 + include/linux/vgaarb.h | 1 +
39 + 1 files changed, 1 insertions(+), 0 deletions(-)
40 +
41 +diff --git a/include/linux/vgaarb.h b/include/linux/vgaarb.h
42 +index c9a9759..814f294 100644
43 +--- a/include/linux/vgaarb.h
44 ++++ b/include/linux/vgaarb.h
45 +@@ -29,6 +29,7 @@
46 + */
47 +
48 + #ifndef LINUX_VGA_H
49 ++#define LINUX_VGA_H
50 +
51 + #include <asm/vga.h>