[PATCH] arch: mips: pic32: pic32mzda: Add missing of_node_put() in time.c

From: Liang He
Date: Wed Jun 15 2022 - 08:44:20 EST


In pic32_xlate_core_timer_irq(), of_find_matching_node() will return
a node pointer with refcount incremented. We should use of_node_put()
when it is not used anymore.

Signed-off-by: Liang He <windhl@xxxxxxx>
---
arch/mips/pic32/pic32mzda/time.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/arch/mips/pic32/pic32mzda/time.c b/arch/mips/pic32/pic32mzda/time.c
index 7174e9abbb1b..c5b5343ca03c 100644
--- a/arch/mips/pic32/pic32mzda/time.c
+++ b/arch/mips/pic32/pic32mzda/time.c
@@ -32,6 +32,9 @@ static unsigned int pic32_xlate_core_timer_irq(void)
goto default_map;

irq = irq_of_parse_and_map(node, 0);
+
+ of_node_put(node);
+
if (!irq)
goto default_map;

--
2.25.1