Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] linux-patches r1718 - genpatches-2.6/trunk/2.6.33
Date: Fri, 25 Jun 2010 20:53:18
Message-Id: 20100625205311.659332CF69@corvid.gentoo.org
1 Author: mpagano
2 Date: 2010-06-25 20:53:10 +0000 (Fri, 25 Jun 2010)
3 New Revision: 1718
4
5 Added:
6 genpatches-2.6/trunk/2.6.33/2700_vgarrb-add-missing-define.patch
7 Modified:
8 genpatches-2.6/trunk/2.6.33/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.33/0000_README
13 ===================================================================
14 --- genpatches-2.6/trunk/2.6.33/0000_README 2010-06-25 20:45:50 UTC (rev 1717)
15 +++ genpatches-2.6/trunk/2.6.33/0000_README 2010-06-25 20:53:10 UTC (rev 1718)
16 @@ -59,6 +59,10 @@
17 From: http://www.kernel.org
18 Desc: Linux 2.6.33.3
19
20 +Patch: 2700_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: 4100_dm-bbr.patch
25 From: EVMS 2.5.2
26 Desc: Bad block relocation support for LiveCD users
27
28 Added: genpatches-2.6/trunk/2.6.33/2700_vgarrb-add-missing-define.patch
29 ===================================================================
30 --- genpatches-2.6/trunk/2.6.33/2700_vgarrb-add-missing-define.patch (rev 0)
31 +++ genpatches-2.6/trunk/2.6.33/2700_vgarrb-add-missing-define.patch 2010-06-25 20:53:10 UTC (rev 1718)
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>