From: Souptick Joarder (HPE) Date: Fri, 18 Feb 2022 16:33:03 +0000 (+0530) Subject: irqchip/nvic: Release nvic_base upon failure X-Git-Tag: v6.6.17~8004^2~1^2~4^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e414c25e3399b2b3d7337dc47abccab5c71b7c8f;p=platform%2Fkernel%2Flinux-rpi.git irqchip/nvic: Release nvic_base upon failure smatch warning was reported as below -> smatch warnings: drivers/irqchip/irq-nvic.c:131 nvic_of_init() warn: 'nvic_base' not released on lines: 97. Release nvic_base upon failure. Reported-by: kernel test robot Reported-by: Dan Carpenter Signed-off-by: Souptick Joarder (HPE) Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/20220218163303.33344-1-jrdr.linux@gmail.com --- diff --git a/drivers/irqchip/irq-nvic.c b/drivers/irqchip/irq-nvic.c index ba4759b..9423030 100644 --- a/drivers/irqchip/irq-nvic.c +++ b/drivers/irqchip/irq-nvic.c @@ -107,6 +107,7 @@ static int __init nvic_of_init(struct device_node *node, if (!nvic_irq_domain) { pr_warn("Failed to allocate irq domain\n"); + iounmap(nvic_base); return -ENOMEM; } @@ -116,6 +117,7 @@ static int __init nvic_of_init(struct device_node *node, if (ret) { pr_warn("Failed to allocate irq chips\n"); irq_domain_remove(nvic_irq_domain); + iounmap(nvic_base); return ret; }