diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2015-08-04 22:54:04 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-08-20 20:02:50 +0300 |
commit | 3a10766d0624c72b978790dba864cf7d6160f89f (patch) | |
tree | 0ab210a8d02dc3a8bac23b4c322a43cf57e81c43 /drivers/pci/host/pci-xgene.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-xgene.c')
-rw-r--r-- | drivers/pci/host/pci-xgene.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/host/pci-xgene.c b/drivers/pci/host/pci-xgene.c index a9dfb70d623a..4c2fb1f78d62 100644 --- a/drivers/pci/host/pci-xgene.c +++ b/drivers/pci/host/pci-xgene.c @@ -514,6 +514,7 @@ static int xgene_pcie_msi_enable(struct pci_bus *bus) if (!bus->msi) return -ENODEV; + of_node_put(msi_node); bus->msi->dev = &bus->dev; return 0; } |