From: David Hunter Date: Wed, 18 Sep 2024 12:39:23 +0000 (-0400) Subject: clk: clk-qoriq: Replace of_node_put() with __free() X-Git-Tag: v6.13-rc1~110^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8fcad5ff78baf7524bb4b46bda4160b5ccc2d2b0;p=thirdparty%2Flinux.git clk: clk-qoriq: Replace of_node_put() with __free() Use __free() to have automatic cleanup instead of calling of_node_put() manually. Compiled without errors or warnings. Signed-off-by: David Hunter Link: https://lore.kernel.org/r/20240918123925.41511-1-david.hunter.linux@gmail.com Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/clk-qoriq.c b/drivers/clk/clk-qoriq.c index 4dcde305944c4..a560edeb4b55a 100644 --- a/drivers/clk/clk-qoriq.c +++ b/drivers/clk/clk-qoriq.c @@ -9,6 +9,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include +#include #include #include #include @@ -1065,11 +1066,8 @@ static void __init _clockgen_init(struct device_node *np, bool legacy); static void __init legacy_init_clockgen(struct device_node *np) { if (!clockgen.node) { - struct device_node *parent_np; - - parent_np = of_get_parent(np); + struct device_node *parent_np __free(device_node) = of_get_parent(np); _clockgen_init(parent_np, true); - of_node_put(parent_np); } }