Browse Source

irqchip/atmel-aic: Fix unbalanced of_node_put() in aic_common_irq_fixup()

aic_common_irq_fixup() is calling twice of_node_put() on the same node
thus leading to an unbalanced refcount on the root node.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reported-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Fixes: b2f579b58e93 ("irqchip: atmel-aic: Add irq fixup infrastructure")
Cc: <stable@vger.kernel.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Boris Brezillon 8 years ago
parent
commit
469bcef53c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/irqchip/irq-atmel-aic-common.c

+ 0 - 1
drivers/irqchip/irq-atmel-aic-common.c

@@ -196,7 +196,6 @@ static void __init aic_common_irq_fixup(const struct of_device_id *matches)
 		return;
 		return;
 
 
 	match = of_match_node(matches, root);
 	match = of_match_node(matches, root);
-	of_node_put(root);
 
 
 	if (match) {
 	if (match) {
 		void (*fixup)(struct device_node *) = match->data;
 		void (*fixup)(struct device_node *) = match->data;