powerpc/6xx: add missing iounmap() on error in hlwd_pic_init()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Sat, 12 Oct 2013 07:13:19 +0000 (15:13 +0800)
committerScott Wood <scottwood@freescale.com>
Tue, 29 Oct 2013 02:11:22 +0000 (21:11 -0500)
Add the missing iounmap() before return from hlwd_pic_init()
in the error handling case.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Scott Wood <scottwood@freescale.com>
arch/powerpc/platforms/embedded6xx/hlwd-pic.c

index 3006b51..6f61e21 100644 (file)
@@ -181,6 +181,7 @@ struct irq_domain *hlwd_pic_init(struct device_node *np)
                                           &hlwd_irq_domain_ops, io_base);
        if (!irq_domain) {
                pr_err("failed to allocate irq_domain\n");
+               iounmap(io_base);
                return NULL;
        }