diff options
author | Claudiu Beznea <claudiu.beznea@microchip.com> | 2020-08-05 11:36:50 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-10-29 09:57:58 +0100 |
commit | e118c1527ffe98a16412631cfeb031d4fa127923 (patch) | |
tree | b65f9c02bb4a16520bab7de31b261f6c6d9e42b0 /arch/arm/mach-at91 | |
parent | 5c4c2f437cead6baa9e430fabf4d381528463b49 (diff) | |
download | linux-stable-e118c1527ffe98a16412631cfeb031d4fa127923.tar.gz linux-stable-e118c1527ffe98a16412631cfeb031d4fa127923.tar.bz2 linux-stable-e118c1527ffe98a16412631cfeb031d4fa127923.zip |
ARM: at91: pm: of_node_put() after its usage
[ Upstream commit e222f943519564978e082c152b4140a47e93392c ]
Put node after it has been used.
Fixes: 13f16017d3e3f ("ARM: at91: pm: Tie the USB clock mask to the pmc")
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/1596616610-15460-4-git-send-email-claudiu.beznea@microchip.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/pm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index 6bc3000deb86..676cc2a318f4 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c @@ -777,6 +777,7 @@ static void __init at91_pm_init(void (*pm_idle)(void)) pmc_np = of_find_matching_node_and_match(NULL, atmel_pmc_ids, &of_id); soc_pm.data.pmc = of_iomap(pmc_np, 0); + of_node_put(pmc_np); if (!soc_pm.data.pmc) { pr_err("AT91: PM not supported, PMC not found\n"); return; |