diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-12-08 05:40:07 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:29:04 -0500 |
commit | 2b7574da255fef27cdb294e19bea26d911443511 (patch) | |
tree | bc2c6f7897c77feb330c51171c1b6447ef6913ac /drivers/video/platinumfb.c | |
parent | 295a1b476749e8b6fa6c3c0978426360ac7dde4b (diff) |
[PATCH] ioremap balanced with iounmap for drivers/video/platinumfb
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: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/platinumfb.c')
-rw-r--r-- | drivers/video/platinumfb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/platinumfb.c b/drivers/video/platinumfb.c index cb26c6df0583..233871655824 100644 --- a/drivers/video/platinumfb.c +++ b/drivers/video/platinumfb.c | |||
@@ -627,6 +627,9 @@ static int __devinit platinumfb_probe(struct of_device* odev, | |||
627 | 627 | ||
628 | rc = platinum_init_fb(info); | 628 | rc = platinum_init_fb(info); |
629 | if (rc != 0) { | 629 | if (rc != 0) { |
630 | iounmap(pinfo->frame_buffer); | ||
631 | iounmap(pinfo->platinum_regs); | ||
632 | iounmap(pinfo->cmap_regs); | ||
630 | dev_set_drvdata(&odev->dev, NULL); | 633 | dev_set_drvdata(&odev->dev, NULL); |
631 | framebuffer_release(info); | 634 | framebuffer_release(info); |
632 | } | 635 | } |