f994327ec150156763ba3eddc6019b1e9eb2be94
[openembedded.git] /
1 From 370510e24ddbf539392ebb6a1e43280965fcb19b Mon Sep 17 00:00:00 2001
2 From: Vaibhav Hiremath <hvaibhav@ti.com>
3 Date: Tue, 31 Mar 2009 18:47:32 +0530
4 Subject: [PATCH 10/69] DSS2: Small VRFB context allocation bug fixed
5
6 This is minor bug while requesting and mapping memory for
7 VRFB space.
8
9 Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
10 ---
11  drivers/video/omap2/omapfb/omapfb-main.c |    1 +
12  1 files changed, 1 insertions(+), 0 deletions(-)
13
14 diff --git a/drivers/video/omap2/omapfb/omapfb-main.c b/drivers/video/omap2/omapfb/omapfb-main.c
15 index 852abe5..44febef 100644
16 --- a/drivers/video/omap2/omapfb/omapfb-main.c
17 +++ b/drivers/video/omap2/omapfb/omapfb-main.c
18 @@ -1193,6 +1193,7 @@ static int omapfb_alloc_fbmem(struct fb_info *fbi, unsigned long size,
19  
20                 if(!va) {
21                         printk(KERN_ERR "vrfb: ioremap failed\n");
22 +                       omap_vrfb_release_ctx(&rg->vrfb);
23                         return -ENOMEM;
24                 }
25  
26 -- 
27 1.6.2.4
28