diff mbox series

[v2] mips: lantiq: Add missing of_node_put() in irq.c

Message ID 20220621154125.4084010-1-windhl@126.com (mailing list archive)
State Accepted
Commit 3748d2185ac4c2c6f80989672253aad909ecaf95
Headers show
Series [v2] mips: lantiq: Add missing of_node_put() in irq.c | expand

Commit Message

Liang He June 21, 2022, 3:41 p.m. UTC
In icu_of_init(), of_find_compatible_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@126.com>
---
 changelog:

 v2: fix bug intro-ed by v1, only one put needed.
 v1: add missing of_node_put()

 arch/mips/lantiq/irq.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Thomas Bogendoerfer June 22, 2022, 7:55 a.m. UTC | #1
On Tue, Jun 21, 2022 at 11:41:25PM +0800, Liang He wrote:
> In icu_of_init(), of_find_compatible_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@126.com>
> ---
>  changelog:
> 
>  v2: fix bug intro-ed by v1, only one put needed.
>  v1: add missing of_node_put()
> 
>  arch/mips/lantiq/irq.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c
> index b732495f138a..20622bf0a9b3 100644
> --- a/arch/mips/lantiq/irq.c
> +++ b/arch/mips/lantiq/irq.c
> @@ -408,6 +408,7 @@ int __init icu_of_init(struct device_node *node, struct device_node *parent)
>  		if (!ltq_eiu_membase)
>  			panic("Failed to remap eiu memory");
>  	}
> +	of_node_put(eiu_node);
>  
>  	return 0;
>  }
> -- 
> 2.25.1

applied to mips-fixes.

Thomas.
diff mbox series

Patch

diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c
index b732495f138a..20622bf0a9b3 100644
--- a/arch/mips/lantiq/irq.c
+++ b/arch/mips/lantiq/irq.c
@@ -408,6 +408,7 @@  int __init icu_of_init(struct device_node *node, struct device_node *parent)
 		if (!ltq_eiu_membase)
 			panic("Failed to remap eiu memory");
 	}
+	of_node_put(eiu_node);
 
 	return 0;
 }