diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-12-08 02:40:10 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:29:04 -0800 |
commit | 1bedb0b2f60dd858fd12e5dd5681fa5da55175f5 (patch) | |
tree | 125d165ff9d202593639a6d1707ae98298bdff76 /drivers/video | |
parent | 164a765b9895f4f80f91cb7f1aab7539b3f8d335 (diff) | |
download | linux-3.10-1bedb0b2f60dd858fd12e5dd5681fa5da55175f5.tar.gz linux-3.10-1bedb0b2f60dd858fd12e5dd5681fa5da55175f5.tar.bz2 linux-3.10-1bedb0b2f60dd858fd12e5dd5681fa5da55175f5.zip |
[PATCH] ioremap balanced with iounmap for drivers/video/hpfb
ioremap must be balanced by an iounmap and failing to do so can result in a
memory leak.
Signed-off-by: Amol Lad <amol@verismonetworks.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/hpfb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/hpfb.c b/drivers/video/hpfb.c index 91cf3b577d1..9ab9b839a0f 100644 --- a/drivers/video/hpfb.c +++ b/drivers/video/hpfb.c @@ -295,6 +295,8 @@ static int __init hpfb_init_one(unsigned long phys_base, unsigned long virt_base if (register_framebuffer(&fb_info) < 0) { fb_dealloc_cmap(&fb_info.cmap); + iounmap(fb_info.screen_base); + fb_info.screen_base = NULL; return 1; } |