mirror of
https://github.com/andreili/SBC_builder.git
synced 2025-08-24 03:14:06 +02:00
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From a624070758979300cfc1b684162a2fb881773cae Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megi@xff.cz>
|
|
Date: Wed, 14 Jun 2023 00:48:21 +0200
|
|
Subject: pci: Workaround ITS timeouts on poweroff/reboot on Orange Pi 5 Plus
|
|
|
|
Call to pci_free_irq_vectors on PCIE2x ports causes ITS timeout messages
|
|
and delayed shutdown/reboot (by up to a minute).
|
|
|
|
The root cause will be elsewhere. This is not for upstream. Anyway,
|
|
there should be no harm from this, since we're shutting down anyway.
|
|
|
|
Signed-off-by: Ondrej Jirman <megi@xff.cz>
|
|
---
|
|
drivers/pci/pcie/portdrv.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/pci/pcie/portdrv.c b/drivers/pci/pcie/portdrv.c
|
|
index e8318fd5f6ed..22d65c83396e 100644
|
|
--- a/drivers/pci/pcie/portdrv.c
|
|
+++ b/drivers/pci/pcie/portdrv.c
|
|
@@ -743,7 +743,7 @@ static void pcie_portdrv_shutdown(struct pci_dev *dev)
|
|
pm_runtime_dont_use_autosuspend(&dev->dev);
|
|
}
|
|
|
|
- pcie_port_device_remove(dev);
|
|
+ device_for_each_child(&dev->dev, NULL, remove_iter);
|
|
}
|
|
|
|
static pci_ers_result_t pcie_portdrv_error_detected(struct pci_dev *dev,
|
|
--
|
|
2.35.3
|
|
|