From: Nicholas Mc Guire Date: Wed, 11 Jul 2018 18:32:45 +0000 (+0200) Subject: MIPS: generic: fix missing of_node_put() X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=28ec2238f37e72a3a40a7eb46893e7651bcc40a6;p=openwrt%2Fstaging%2Fblogic.git MIPS: generic: fix missing of_node_put() of_find_compatible_node() returns a device_node pointer with refcount incremented and must be decremented explicitly. As this code is using the result only to check presence of the interrupt controller (!NULL) but not actually using the result otherwise the refcount can be decremented here immediately again. Signed-off-by: Nicholas Mc Guire Signed-off-by: Paul Burton Patchwork: https://patchwork.linux-mips.org/patch/19820/ Cc: Ralf Baechle Cc: James Hogan Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org --- diff --git a/arch/mips/generic/init.c b/arch/mips/generic/init.c index 07ec08462d70..a106f8113842 100644 --- a/arch/mips/generic/init.c +++ b/arch/mips/generic/init.c @@ -203,6 +203,7 @@ void __init arch_init_irq(void) "mti,cpu-interrupt-controller"); if (!cpu_has_veic && !intc_node) mips_cpu_irq_init(); + of_node_put(intc_node); irqchip_init(); }