[PATCH] cpufreq: mvebu: Call of_node_put(np) only once in armada_xp_pmsu_cpufreq_init()
From: Markus Elfring <hidden>
Date: 2024-10-03 08:30:45
Also in:
kernel-janitors, linux-pm, lkml
Subsystem:
arm/marvell kirkwood and armada 370, 375, 38x, 39x, xp, 3700, 7k/8k, cn9130 soc support, cpu frequency scaling framework, the rest · Maintainers:
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth, "Rafael J. Wysocki", Viresh Kumar, Linus Torvalds
From: Markus Elfring <redacted>
Date: Thu, 3 Oct 2024 10:18:39 +0200
An of_node_put(np) call was immediately used after a return value check
for an of_address_to_resource() call in this function implementation.
Thus call such a function only once instead directly before the check.
This issue was transformed by using the Coccinelle software.
Signed-off-by: Markus Elfring <redacted>
---
drivers/cpufreq/mvebu-cpufreq.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/cpufreq/mvebu-cpufreq.c b/drivers/cpufreq/mvebu-cpufreq.c
index 7f3cfe668f30..55ba7ad72c36 100644
--- a/drivers/cpufreq/mvebu-cpufreq.c
+++ b/drivers/cpufreq/mvebu-cpufreq.c
@@ -42,14 +42,12 @@ static int __init armada_xp_pmsu_cpufreq_init(void)
return 0;
ret = of_address_to_resource(np, 1, &res);
+ of_node_put(np);
if (ret) {
pr_warn(FW_WARN "not enabling cpufreq, deprecated armada-xp-cpu-clock binding\n");
- of_node_put(np);
return 0;
}
- of_node_put(np);
-
/*
* For each CPU, this loop registers the operating points
* supported (which are the nominal CPU frequency and half of
--2.46.1