diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-12-08 05:40:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:29:05 -0500 |
commit | 945f0ee257b4f91498b4061dc89b8a68c423ea6f (patch) | |
tree | 5b87738d5e264a7fe7186cf862207f46eee6bd33 /drivers/video/S3triofb.c | |
parent | 57354c42f177a2b58fb1f61125ad2cb2e8743a9b (diff) |
[PATCH] ioremap balanced with iounmap for drivers/video/S3triofb
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>
Diffstat (limited to 'drivers/video/S3triofb.c')
-rw-r--r-- | drivers/video/S3triofb.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/video/S3triofb.c b/drivers/video/S3triofb.c index 397005eb392d..b3717c8f1bc2 100644 --- a/drivers/video/S3triofb.c +++ b/drivers/video/S3triofb.c | |||
@@ -535,8 +535,11 @@ static void __init s3triofb_of_init(struct device_node *dp) | |||
535 | #endif | 535 | #endif |
536 | 536 | ||
537 | fb_info.flags = FBINFO_FLAG_DEFAULT; | 537 | fb_info.flags = FBINFO_FLAG_DEFAULT; |
538 | if (register_framebuffer(&fb_info) < 0) | 538 | if (register_framebuffer(&fb_info) < 0) { |
539 | return; | 539 | iounmap(fb_info.screen_base); |
540 | fb_info.screen_base = NULL; | ||
541 | return; | ||
542 | } | ||
540 | 543 | ||
541 | printk("fb%d: S3 Trio frame buffer device on %s\n", | 544 | printk("fb%d: S3 Trio frame buffer device on %s\n", |
542 | fb_info.node, dp->full_name); | 545 | fb_info.node, dp->full_name); |