summaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2024-09-05 16:11:08 +0200
committerArnd Bergmann <arnd@arndb.de>2024-09-05 16:11:14 +0200
commit639d5f6dee6eef470bcef434a5c401571602d9c4 (patch)
tree4952395700fc5213f41a84e2f1bf7cfe6025417a /arch/arm
parentMerge tag 'ti-driver-soc-for-v6.12' of https://git.kernel.org/pub/scm/linux/k... (diff)
parentbus: integrator-lm: fix OF node leak in probe() (diff)
downloadlinux-639d5f6dee6eef470bcef434a5c401571602d9c4.tar.xz
linux-639d5f6dee6eef470bcef434a5c401571602d9c4.zip
Merge tag 'integrator-v6.12' of https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator into soc/drivers
Integrator fixes for the v6.12 kernel cycle, some of_node_put():s were missing in the SoC drivers. * tag 'integrator-v6.12' of https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator: bus: integrator-lm: fix OF node leak in probe() ARM: versatile: fix OF node leak in CPUs prepare Link: https://lore.kernel.org/r/CACRpkdahXECZXWA5uv=SZtkzU0E++fQj7QWK8kYuH0-asLUPqg@mail.gmail.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-versatile/platsmp-realview.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-versatile/platsmp-realview.c b/arch/arm/mach-versatile/platsmp-realview.c
index 6965a1de727b..d38b2e174257 100644
--- a/arch/arm/mach-versatile/platsmp-realview.c
+++ b/arch/arm/mach-versatile/platsmp-realview.c
@@ -70,6 +70,7 @@ static void __init realview_smp_prepare_cpus(unsigned int max_cpus)
return;
}
map = syscon_node_to_regmap(np);
+ of_node_put(np);
if (IS_ERR(map)) {
pr_err("PLATSMP: No syscon regmap\n");
return;