diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2015-08-04 19:54:04 (GMT) |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-08-20 17:02:50 (GMT) |
commit | 3a10766d0624c72b978790dba864cf7d6160f89f (patch) | |
tree | 0ab210a8d02dc3a8bac23b4c322a43cf57e81c43 /drivers/pci/host/pci-mvebu.c | |
parent | 2291ec09025f85c11fbd0e9877c4306a8aa6e7e9 (diff) | |
download | linux-3a10766d0624c72b978790dba864cf7d6160f89f.tar.xz |
PCI: Drop references acquired by of_parse_phandle()
of_parse_phandle() returns a device_node pointer with the refcount
incremented. We should dispose of this reference when we're finished.
Drop the reference acquired by of_parse_phandle().
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Diffstat (limited to 'drivers/pci/host/pci-mvebu.c')
-rw-r--r-- | drivers/pci/host/pci-mvebu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c index 70aa095..67ec5e1 100644 --- a/drivers/pci/host/pci-mvebu.c +++ b/drivers/pci/host/pci-mvebu.c @@ -879,6 +879,7 @@ static void mvebu_pcie_msi_enable(struct mvebu_pcie *pcie) return; pcie->msi = of_pci_find_msi_chip_by_node(msi_node); + of_node_put(msi_node); if (pcie->msi) pcie->msi->dev = &pcie->pdev->dev; |