diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-07-01 22:27:45 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-07-01 22:27:45 +0200 |
commit | f99d621133ef48c9ace6416e864ffacba1cb2bc8 (patch) | |
tree | 1d2548e3c3eb0ffb112416f4732253b6f488cfc9 | |
parent | d95ce66d4cc3b088308821de185cb372097fec84 (diff) | |
parent | 34d2cd3fccced12b958b8848e3eff0ee4296764c (diff) | |
download | linux-f99d621133ef48c9ace6416e864ffacba1cb2bc8.tar.bz2 |
Merge tag 'amlogic-arm-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux into arm/fixes
Amlogic ARM mach-meson changes for v5.20:
- Fix refcount leak in meson_smp_prepare_cpus
* tag 'amlogic-arm-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux:
ARM: meson: Fix refcount leak in meson_smp_prepare_cpus
Link: https://lore.kernel.org/r/cbf6bcb5-c7be-40fe-4436-4578c9d6c532@baylibre.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/mach-meson/platsmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-meson/platsmp.c b/arch/arm/mach-meson/platsmp.c index 4b8ad728bb42..32ac60b89fdc 100644 --- a/arch/arm/mach-meson/platsmp.c +++ b/arch/arm/mach-meson/platsmp.c @@ -71,6 +71,7 @@ static void __init meson_smp_prepare_cpus(const char *scu_compatible, } sram_base = of_iomap(node, 0); + of_node_put(node); if (!sram_base) { pr_err("Couldn't map SRAM registers\n"); return; @@ -91,6 +92,7 @@ static void __init meson_smp_prepare_cpus(const char *scu_compatible, } scu_base = of_iomap(node, 0); + of_node_put(node); if (!scu_base) { pr_err("Couldn't map SCU registers\n"); return; |