All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pmdomain: rockchip: Simplify dropping OF node reference
@ 2024-08-25 18:31 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2024-08-25 18:31 UTC (permalink / raw)
  To: Ulf Hansson, Heiko Stuebner, linux-pm, linux-arm-kernel,
	linux-rockchip, linux-kernel
  Cc: Krzysztof Kozlowski

Drop OF node reference immediately after using it in
syscon_node_to_regmap(), which is both simpler and typical/expected
code pattern.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/pmdomain/rockchip/pm-domains.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/pmdomain/rockchip/pm-domains.c b/drivers/pmdomain/rockchip/pm-domains.c
index 64b4d7120d83..5ee7efbd2ef8 100644
--- a/drivers/pmdomain/rockchip/pm-domains.c
+++ b/drivers/pmdomain/rockchip/pm-domains.c
@@ -716,12 +716,11 @@ static int rockchip_pm_add_one_domain(struct rockchip_pmu *pmu,
 				goto err_unprepare_clocks;
 			}
 			pd->qos_regmap[j] = syscon_node_to_regmap(qos_node);
+			of_node_put(qos_node);
 			if (IS_ERR(pd->qos_regmap[j])) {
 				error = -ENODEV;
-				of_node_put(qos_node);
 				goto err_unprepare_clocks;
 			}
-			of_node_put(qos_node);
 		}
 	}
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-09-14 14:41 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-25 18:31 [PATCH] pmdomain: rockchip: Simplify dropping OF node reference Krzysztof Kozlowski
2024-08-25 18:31 ` Krzysztof Kozlowski
2024-08-25 18:52 ` Heiko Stübner
2024-08-25 18:52   ` Heiko Stübner
2024-09-13 12:01 ` Ulf Hansson
2024-09-13 12:01   ` Ulf Hansson
2024-09-13 13:16 ` [cocci] " Markus Elfring
2024-09-13 13:16   ` Markus Elfring
2024-09-13 13:16   ` Markus Elfring
2024-09-14 14:40   ` [cocci] Generalising a transformation with SmPL? Markus Elfring
2024-09-14 14:40     ` Markus Elfring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.