|
@@ -382,6 +382,14 @@ int pci_disable_pcie_error_reporting(struct pci_dev *dev)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(pci_disable_pcie_error_reporting);
|
|
|
|
|
|
+void pci_aer_clear_device_status(struct pci_dev *dev)
|
|
|
+{
|
|
|
+ u16 sta;
|
|
|
+
|
|
|
+ pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &sta);
|
|
|
+ pcie_capability_write_word(dev, PCI_EXP_DEVSTA, sta);
|
|
|
+}
|
|
|
+
|
|
|
int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
|
|
|
{
|
|
|
int pos;
|
|
@@ -1532,12 +1540,7 @@ static pci_ers_result_t aer_root_reset(struct pci_dev *dev)
|
|
|
*/
|
|
|
static void aer_error_resume(struct pci_dev *dev)
|
|
|
{
|
|
|
- u16 reg16;
|
|
|
-
|
|
|
- /* Clean up Root device status */
|
|
|
- pcie_capability_read_word(dev, PCI_EXP_DEVSTA, ®16);
|
|
|
- pcie_capability_write_word(dev, PCI_EXP_DEVSTA, reg16);
|
|
|
-
|
|
|
+ pci_aer_clear_device_status(dev);
|
|
|
pci_cleanup_aer_uncorrect_error_status(dev);
|
|
|
}
|
|
|
|