diff options
-rw-r--r-- | drivers/pci/host/pcie-xilinx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-xilinx.c b/drivers/pci/host/pcie-xilinx.c index c8616fadccf1..7f030f5d750b 100644 --- a/drivers/pci/host/pcie-xilinx.c +++ b/drivers/pci/host/pcie-xilinx.c | |||
@@ -632,7 +632,7 @@ static int xilinx_pcie_probe(struct platform_device *pdev) | |||
632 | { | 632 | { |
633 | struct device *dev = &pdev->dev; | 633 | struct device *dev = &pdev->dev; |
634 | struct xilinx_pcie_port *port; | 634 | struct xilinx_pcie_port *port; |
635 | struct pci_bus *bus; | 635 | struct pci_bus *bus, *child; |
636 | int err; | 636 | int err; |
637 | resource_size_t iobase = 0; | 637 | resource_size_t iobase = 0; |
638 | LIST_HEAD(res); | 638 | LIST_HEAD(res); |
@@ -686,6 +686,8 @@ static int xilinx_pcie_probe(struct platform_device *pdev) | |||
686 | #ifndef CONFIG_MICROBLAZE | 686 | #ifndef CONFIG_MICROBLAZE |
687 | pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci); | 687 | pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci); |
688 | #endif | 688 | #endif |
689 | list_for_each_entry(child, &bus->children, node) | ||
690 | pcie_bus_configure_settings(child); | ||
689 | pci_bus_add_devices(bus); | 691 | pci_bus_add_devices(bus); |
690 | return 0; | 692 | return 0; |
691 | 693 | ||