[PATCH 2/2] ARM: mvebu: Use common of_node_put() code in mvebu_pm_suspend_init()

From: Markus Elfring
Date: Wed Oct 02 2024 - 13:52:39 EST


From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 2 Oct 2024 19:15:09 +0200

Add a local variable “rc” and a label so that a bit of exception handling
can be better reused at the end of this function implementation.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx>
---
arch/arm/mach-mvebu/pm.c | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/arch/arm/mach-mvebu/pm.c b/arch/arm/mach-mvebu/pm.c
index b149d9b77505..cd85f2c56836 100644
--- a/arch/arm/mach-mvebu/pm.c
+++ b/arch/arm/mach-mvebu/pm.c
@@ -235,6 +235,7 @@ int __init mvebu_pm_suspend_init(void (*board_pm_enter)(void __iomem *sdram_reg,
{
struct device_node *np;
struct resource res;
+ int rc;

np = of_find_compatible_node(NULL, NULL,
"marvell,armada-xp-sdram-controller");
@@ -242,26 +243,26 @@ int __init mvebu_pm_suspend_init(void (*board_pm_enter)(void __iomem *sdram_reg,
return -ENODEV;

if (of_address_to_resource(np, 0, &res)) {
- of_node_put(np);
- return -ENODEV;
+ rc = -ENODEV;
+ goto put_node;
}

if (!request_mem_region(res.start, resource_size(&res),
np->full_name)) {
- of_node_put(np);
- return -EBUSY;
+ rc = -EBUSY;
+ goto put_node;
}

sdram_ctrl = ioremap(res.start, resource_size(&res));
if (!sdram_ctrl) {
release_mem_region(res.start, resource_size(&res));
- of_node_put(np);
- return -ENOMEM;
+ rc = -ENOMEM;
+ goto put_node;
}

- of_node_put(np);
-
mvebu_board_pm_enter = board_pm_enter;
-
- return 0;
+ rc = 0;
+put_node:
+ of_node_put(np);
+ return rc;
}
--
2.46.1