diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-07-06 13:36:16 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-07-06 13:36:17 +0200 |
commit | aafc013e8297b30c517a6383516bc88a3425856c (patch) | |
tree | 4752150a9a3890a8c97b8cebe2eeab8775b32e97 /arch/arm | |
parent | 3c5a4e6d833a6165566d7467a34c82e6e5a987f3 (diff) | |
parent | f4470dbfb5ff92804650bc71d115c3f150d430f6 (diff) |
Merge tag 'v5.19-rockchip-socfixes1' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip into arm/fixes
Add a missing of_node_put in suspend code error path.
* tag 'v5.19-rockchip-socfixes1' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip:
ARM: rockchip: Add missing of_node_put() in rockchip_suspend_init()
Link: https://lore.kernel.org/r/7527945.6fTUFtlzNn@phil
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-rockchip/pm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/mach-rockchip/pm.c b/arch/arm/mach-rockchip/pm.c index 87389d9456b9..30d781d80fe0 100644 --- a/arch/arm/mach-rockchip/pm.c +++ b/arch/arm/mach-rockchip/pm.c @@ -311,7 +311,7 @@ void __init rockchip_suspend_init(void) &match); if (!match) { pr_err("Failed to find PMU node\n"); - return; + goto out_put; } pm_data = (struct rockchip_pm_data *) match->data; @@ -320,9 +320,12 @@ void __init rockchip_suspend_init(void) if (ret) { pr_err("%s: matches init error %d\n", __func__, ret); - return; + goto out_put; } } suspend_set_ops(pm_data->ops); + +out_put: + of_node_put(np); } |