summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch
new file mode 100644
index 0000000000..559e49f40a
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0024-DSS2-Beagle-Use-gpio_set_value.patch
@@ -0,0 +1,48 @@
1From 2710416c43572652cb5355a5eaf68038c95659e8 Mon Sep 17 00:00:00 2001
2From: Tomi Valkeinen <tomi.valkeinen@nokia.com>
3Date: Thu, 9 Apr 2009 12:10:46 +0300
4Subject: [PATCH] DSS2: Beagle: Use gpio_set_value
5
6---
7 arch/arm/mach-omap2/board-omap3beagle.c | 10 +++++++---
8 1 files changed, 7 insertions(+), 3 deletions(-)
9
10diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
11index b67e7a5..8c1961d 100644
12--- a/arch/arm/mach-omap2/board-omap3beagle.c
13+++ b/arch/arm/mach-omap2/board-omap3beagle.c
14@@ -372,7 +372,7 @@ static struct platform_device keys_gpio = {
15 static int beagle_enable_dvi(struct omap_display *display)
16 {
17 if (display->hw_config.panel_reset_gpio != -1)
18- gpio_direction_output(display->hw_config.panel_reset_gpio, 1);
19+ gpio_set_value(display->hw_config.panel_reset_gpio, 1);
20
21 return 0;
22 }
23@@ -380,7 +380,7 @@ static int beagle_enable_dvi(struct omap_display *display)
24 static void beagle_disable_dvi(struct omap_display *display)
25 {
26 if (display->hw_config.panel_reset_gpio != -1)
27- gpio_direction_output(display->hw_config.panel_reset_gpio, 0);
28+ gpio_set_value(display->hw_config.panel_reset_gpio, 0);
29 }
30
31 static struct omap_dss_display_config beagle_display_data_dvi = {
32@@ -445,8 +445,12 @@ static void __init beagle_display_init(void)
33 int r;
34
35 r = gpio_request(beagle_display_data_dvi.panel_reset_gpio, "DVI reset");
36- if (r < 0)
37+ if (r < 0) {
38 printk(KERN_ERR "Unable to get DVI reset GPIO\n");
39+ return;
40+ }
41+
42+ gpio_direction_output(beagle_display_data_dvi.panel_reset_gpio, 0);
43 }
44
45 static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
46--
471.5.6.5
48