diff mbox series

powerpc: 44x: Add of_node_put() when break out from for_each

Message ID 20220701133126.243102-1-windhl@126.com (mailing list archive)
State Accepted
Headers show
Series powerpc: 44x: Add of_node_put() when break out from for_each | expand

Checks

Context Check Description
snowpatch_ozlabs/github-powerpc_ppctests success Successfully ran 10 jobs.
snowpatch_ozlabs/github-powerpc_selftests success Successfully ran 10 jobs.
snowpatch_ozlabs/github-powerpc_sparse success Successfully ran 4 jobs.
snowpatch_ozlabs/github-powerpc_clang success Successfully ran 7 jobs.
snowpatch_ozlabs/github-powerpc_kernel_qemu success Successfully ran 23 jobs.

Commit Message

Liang He July 1, 2022, 1:31 p.m. UTC
In ppc47x_init_irq(), we need to call of_node_put() when there is
a break during the iteration of for_each_node_with_property() which
will automatically increase and decrease the refcount.

Signed-off-by: Liang He <windhl@126.com>
---
 arch/powerpc/platforms/44x/ppc476.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Michael Ellerman Sept. 9, 2022, 12:07 p.m. UTC | #1
On Fri, 1 Jul 2022 21:31:26 +0800, Liang He wrote:
> In ppc47x_init_irq(), we need to call of_node_put() when there is
> a break during the iteration of for_each_node_with_property() which
> will automatically increase and decrease the refcount.
> 
> 

Applied to powerpc/next.

[1/1] powerpc: 44x: Add of_node_put() when break out from for_each
      https://git.kernel.org/powerpc/c/9d86f0919544d8e422be2a1d562de1dbbbb6052d

cheers
diff mbox series

Patch

diff --git a/arch/powerpc/platforms/44x/ppc476.c b/arch/powerpc/platforms/44x/ppc476.c
index 20cc8f80b086..7d9075fb20c9 100644
--- a/arch/powerpc/platforms/44x/ppc476.c
+++ b/arch/powerpc/platforms/44x/ppc476.c
@@ -140,6 +140,7 @@  static void __init ppc47x_init_irq(void)
 		ppc_md.get_irq = mpic_get_irq;
 	} else
 		panic("Unrecognized top level interrupt controller");
+	of_node_put(np);
 }
 
 #ifdef CONFIG_SMP