diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2016-05-28 18:22:24 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-06-20 14:06:05 -0500 |
commit | c3245a5664003360bd9deda9777be7cea4fe9982 (patch) | |
tree | eb515a744fc73e9cd9d80e774d71079cdaeb0804 /drivers/pci/host/pcie-iproc.c | |
parent | 7baf69c7c3025d18dbf7a4b903f9ddc647aacaaf (diff) | |
download | linux-c3245a5664003360bd9deda9777be7cea4fe9982.tar.bz2 |
PCI: iproc: Request host bridge window resources
Request host bridge window resources so they appear in ioport_resource and
iomem_resource and are reflected in /proc/ioports and /proc/iomem.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/host/pcie-iproc.c')
-rw-r--r-- | drivers/pci/host/pcie-iproc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c index a576aeeb22da..e167b2f0098d 100644 --- a/drivers/pci/host/pcie-iproc.c +++ b/drivers/pci/host/pcie-iproc.c @@ -462,6 +462,10 @@ int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) if (!pcie || !pcie->dev || !pcie->base) return -EINVAL; + ret = devm_request_pci_bus_resources(pcie->dev, res); + if (ret) + return ret; + ret = phy_init(pcie->phy); if (ret) { dev_err(pcie->dev, "unable to initialize PCIe PHY\n"); |