Establishing a PCIe link can take a while, allow asynchronous probing so that link establishment can happen in the background while other devices are being probed.
Signed-off-by: Anand Moon <[email protected]> --- drivers/pci/controller/dwc/pci-dra7xx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/controller/dwc/pci-dra7xx.c b/drivers/pci/controller/dwc/pci-dra7xx.c index d5d26229063f..be470d54b2ee 100644 --- a/drivers/pci/controller/dwc/pci-dra7xx.c +++ b/drivers/pci/controller/dwc/pci-dra7xx.c @@ -951,6 +951,7 @@ static struct platform_driver dra7xx_pcie_driver = { .of_match_table = of_dra7xx_pcie_match, .suppress_bind_attrs = true, .pm = &dra7xx_pcie_pm_ops, + .probe_type = PROBE_PREFER_ASYNCHRONOUS, }, .shutdown = dra7xx_pcie_shutdown, }; -- 2.50.1
