mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 19:09:41 +01:00
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>
29 lines
895 B
Diff
29 lines
895 B
Diff
From 370510e24ddbf539392ebb6a1e43280965fcb19b Mon Sep 17 00:00:00 2001
|
|
From: Vaibhav Hiremath <hvaibhav@ti.com>
|
|
Date: Tue, 31 Mar 2009 18:47:32 +0530
|
|
Subject: [PATCH] DSS2: Small VRFB context allocation bug fixed
|
|
|
|
This is minor bug while requesting and mapping memory for
|
|
VRFB space.
|
|
|
|
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
|
|
---
|
|
drivers/video/omap2/omapfb/omapfb-main.c | 1 +
|
|
1 files changed, 1 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/drivers/video/omap2/omapfb/omapfb-main.c b/drivers/video/omap2/omapfb/omapfb-main.c
|
|
index 852abe5..44febef 100644
|
|
--- a/drivers/video/omap2/omapfb/omapfb-main.c
|
|
+++ b/drivers/video/omap2/omapfb/omapfb-main.c
|
|
@@ -1193,6 +1193,7 @@ static int omapfb_alloc_fbmem(struct fb_info *fbi, unsigned long size,
|
|
|
|
if(!va) {
|
|
printk(KERN_ERR "vrfb: ioremap failed\n");
|
|
+ omap_vrfb_release_ctx(&rg->vrfb);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
--
|
|
1.5.6.5
|
|
|