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-meson.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/controller/dwc/pci-meson.c b/drivers/pci/controller/dwc/pci-meson.c index 0694084f612b..280146f7b783 100644 --- a/drivers/pci/controller/dwc/pci-meson.c +++ b/drivers/pci/controller/dwc/pci-meson.c @@ -467,6 +467,7 @@ static struct platform_driver meson_pcie_driver = { .driver = { .name = "meson-pcie", .of_match_table = meson_pcie_of_match, + .probe_type = PROBE_PREFER_ASYNCHRONOUS, }, }; -- 2.50.1
