diff options
author | 2021-05-04 10:43:24 -0500 | |
---|---|---|
committer | 2021-05-04 10:43:24 -0500 | |
commit | 22d106733a2579f68b19170f575f786bbfbf88f3 (patch) | |
tree | 2dfcc2d2227592e148555ff6dbf4d1da2dd7f7d2 | |
parent | Merge branch 'pci/kernel-doc' (diff) | |
parent | PCI: Delay after FLR of Intel DC P4510 NVMe (diff) | |
download | wireguard-linux-22d106733a2579f68b19170f575f786bbfbf88f3.tar.xz wireguard-linux-22d106733a2579f68b19170f575f786bbfbf88f3.zip |
Merge branch 'pci/virtualization'
- Increase delay after FLR to work around Intel DC P4510 NVMe erratum
(Raphael Norwitz)
* pci/virtualization:
PCI: Delay after FLR of Intel DC P4510 NVMe
-rw-r--r-- | drivers/pci/quirks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 6aa9df411604..af43b340853e 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -3917,6 +3917,7 @@ static const struct pci_dev_reset_methods pci_dev_reset_methods[] = { reset_ivb_igd }, { PCI_VENDOR_ID_SAMSUNG, 0xa804, nvme_disable_and_flr }, { PCI_VENDOR_ID_INTEL, 0x0953, delay_250ms_after_flr }, + { PCI_VENDOR_ID_INTEL, 0x0a54, delay_250ms_after_flr }, { PCI_VENDOR_ID_CHELSIO, PCI_ANY_ID, reset_chelsio_generic_dev }, { 0 } |