From: Bjorn Helgaas Date: Fri, 15 May 2020 19:31:16 +0000 (-0500) Subject: PCI/PM: Adjust pcie_wait_for_link_delay() for caller delay X-Git-Tag: v5.4.47~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3e6ba31fc4dfb4670ff8f2247a8d743ed1a56ad;p=platform%2Fkernel%2Flinux-rpi.git PCI/PM: Adjust pcie_wait_for_link_delay() for caller delay [ Upstream commit f044baaff1eb7ae5aa7a36f1b7ad5bd8eeb672c4 ] The caller of pcie_wait_for_link_delay() specifies the time to wait after the link becomes active. When the downstream port doesn't support link active reporting, obviously we can't tell when the link becomes active, so we waited the worst-case time (1000 ms) plus 100 ms, ignoring the delay from the caller. Instead, wait for 1000 ms + the delay from the caller. Fixes: 4827d63891b6 ("PCI/PM: Add pcie_wait_for_link_delay()") Signed-off-by: Bjorn Helgaas Signed-off-by: Sasha Levin --- diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 779132ae..c73e809 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -4621,10 +4621,10 @@ static bool pcie_wait_for_link_delay(struct pci_dev *pdev, bool active, /* * Some controllers might not implement link active reporting. In this - * case, we wait for 1000 + 100 ms. + * case, we wait for 1000 ms + any delay requested by the caller. */ if (!pdev->link_active_reporting) { - msleep(1100); + msleep(timeout + delay); return true; }