summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0031-DSS2-do-bootmem-reserve-for-exclusive-access.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/0031-DSS2-do-bootmem-reserve-for-exclusive-access.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/0031-DSS2-do-bootmem-reserve-for-exclusive-access.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0031-DSS2-do-bootmem-reserve-for-exclusive-access.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0031-DSS2-do-bootmem-reserve-for-exclusive-access.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0031-DSS2-do-bootmem-reserve-for-exclusive-access.patch
new file mode 100644
index 0000000000..ae777ed04e
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-omap-2.6.29/dss2/0031-DSS2-do-bootmem-reserve-for-exclusive-access.patch
@@ -0,0 +1,33 @@
1From 30c40f5e6b1794430f678bf23d3319354321cab7 Mon Sep 17 00:00:00 2001
2From: Imre Deak <imre.deak@nokia.com>
3Date: Tue, 14 Apr 2009 14:50:11 +0200
4Subject: [PATCH] DSS2: do bootmem reserve for exclusive access
5
6BOOTMEM_DEFAULT would allow multiple reservations for the same location,
7we need to reserve the region for our exclusive use. Also check if the
8reserve succeeded.
9
10Signed-off-by: Imre Deak <imre.deak@nokia.com>
11---
12 arch/arm/plat-omap/vram.c | 5 ++++-
13 1 files changed, 4 insertions(+), 1 deletions(-)
14
15diff --git a/arch/arm/plat-omap/vram.c b/arch/arm/plat-omap/vram.c
16index f24a110..520f260 100644
17--- a/arch/arm/plat-omap/vram.c
18+++ b/arch/arm/plat-omap/vram.c
19@@ -524,7 +524,10 @@ void __init omapfb_reserve_sdram(void)
20 return;
21 }
22
23- reserve_bootmem(paddr, size, BOOTMEM_DEFAULT);
24+ if (reserve_bootmem(paddr, size, BOOTMEM_EXCLUSIVE) < 0) {
25+ pr_err("FB: failed to reserve VRAM\n");
26+ return;
27+ }
28 } else {
29 if (size > sdram_size) {
30 printk(KERN_ERR "Illegal SDRAM size for VRAM\n");
31--
321.5.6.5
33