diff options
| author | Nicholas Mc Guire <[email protected]> | 2018-06-29 18:50:27 +0000 |
|---|---|---|
| committer | Bjorn Helgaas <[email protected]> | 2018-06-29 18:50:27 +0000 |
| commit | 3dc6ddfedc2818eaaa36842fbb049191e0c5e50f (patch) | |
| tree | 79f2f352fba696a65d35a8bfac03351e0e9d5619 /drivers/pci/controller/pci-ftpci100.c | |
| parent | PCI: xilinx-nwl: Add missing of_node_put() (diff) | |
| download | kernel-3dc6ddfedc2818eaaa36842fbb049191e0c5e50f.tar.gz kernel-3dc6ddfedc2818eaaa36842fbb049191e0c5e50f.zip | |
PCI: faraday: Add missing of_node_put()
The call to of_get_next_child() returns a node pointer with refcount
incremented thus it must be explicitly decremented here in the error
path and after the last usage.
Fixes: d3c68e0a7e34 ("PCI: faraday: Add Faraday Technology FTPCI100 PCI Host Bridge driver")
Signed-off-by: Nicholas Mc Guire <[email protected]>
[[email protected]: updated commit log]
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Linus Walleij <[email protected]>
Diffstat (limited to 'drivers/pci/controller/pci-ftpci100.c')
| -rw-r--r-- | drivers/pci/controller/pci-ftpci100.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/controller/pci-ftpci100.c b/drivers/pci/controller/pci-ftpci100.c index a1ebe9ed441f..20bb2564a6b3 100644 --- a/drivers/pci/controller/pci-ftpci100.c +++ b/drivers/pci/controller/pci-ftpci100.c @@ -355,11 +355,13 @@ static int faraday_pci_setup_cascaded_irq(struct faraday_pci *p) irq = of_irq_get(intc, 0); if (irq <= 0) { dev_err(p->dev, "failed to get parent IRQ\n"); + of_node_put(intc); return irq ?: -EINVAL; } p->irqdomain = irq_domain_add_linear(intc, PCI_NUM_INTX, &faraday_pci_irqdomain_ops, p); + of_node_put(intc); if (!p->irqdomain) { dev_err(p->dev, "failed to create Gemini PCI IRQ domain\n"); return -EINVAL; |
