Skip to content

Commit

Permalink
[PATCH] ioremap balanced with iounmap for drivers/video/fm2fb
Browse files Browse the repository at this point in the history
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>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Amol Lad authored and Linus Torvalds committed Dec 8, 2006
1 parent 1bedb0b commit 1b3349f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/video/fm2fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ static int __devinit fm2fb_probe(struct zorro_dev *z,

if (register_framebuffer(info) < 0) {
fb_dealloc_cmap(&info->cmap);
iounmap(info->screen_base);
framebuffer_release(info);
zorro_release_device(z);
return -EINVAL;
Expand Down

0 comments on commit 1b3349f

Please sign in to comment.