projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c41be7a
)
PCI: xilinx: Request host bridge window resources
author
Bjorn Helgaas
<bhelgaas@google.com>
Sat, 28 May 2016 23:27:03 +0000
(18:27 -0500)
committer
Bjorn Helgaas
<bhelgaas@google.com>
Mon, 20 Jun 2016 19:06:06 +0000
(14:06 -0500)
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>
drivers/pci/host/pcie-xilinx.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/pci/host/pcie-xilinx.c
b/drivers/pci/host/pcie-xilinx.c
index 5c456db47c49cac56f068220be8751c46bc051ec..4703aa336041e36453ccf96681521835241887b8 100644
(file)
--- a/
drivers/pci/host/pcie-xilinx.c
+++ b/
drivers/pci/host/pcie-xilinx.c
@@
-693,6
+693,11
@@
static int xilinx_pcie_probe(struct platform_device *pdev)
dev_err(dev, "Getting bridge resources failed\n");
return err;
}
+
+ err = devm_request_pci_bus_resources(dev, &res);
+ if (err)
+ goto error;
+
bus = pci_create_root_bus(&pdev->dev, 0,
&xilinx_pcie_ops, port, &res);
if (!bus) {