PCI: Print the actual delay time in pci_bridge_wait_for_secondary_bus()

[ Upstream commit d24eba726aadf8778f2907dd42281c6380b0ccaa ]

Print the delay amount that pcie_wait_for_link_delay() is invoked with
instead of the hardcoded 1000ms value in the debug info print.

Fixes: 7b3ba09feb ("PCI/PM: Shorten pci_bridge_wait_for_secondary_bus() wait time for slow links")
Signed-off-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Link: https://patch.msgid.link/20250414001505.21243-2-wilfred.opensource@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Wilfred Mallawa
2025-04-14 10:15:06 +10:00
committed by Greg Kroah-Hartman
parent 2e6d9128fe
commit 92d879eff4

View File

@@ -5221,7 +5221,7 @@ int pci_bridge_wait_for_secondary_bus(struct pci_dev *dev, char *reset_type)
delay); delay);
if (!pcie_wait_for_link_delay(dev, true, delay)) { if (!pcie_wait_for_link_delay(dev, true, delay)) {
/* Did not train, no need to wait any further */ /* Did not train, no need to wait any further */
pci_info(dev, "Data Link Layer Link Active not set in 1000 msec\n"); pci_info(dev, "Data Link Layer Link Active not set in %d msec\n", delay);
return -ENOTTY; return -ENOTTY;
} }