aer.h 908 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (C) 2006 Intel Corp.
  3. * Tom Long Nguyen (tom.l.nguyen@intel.com)
  4. * Zhang Yanmin (yanmin.zhang@intel.com)
  5. */
  6. #ifndef _AER_H_
  7. #define _AER_H_
  8. #if defined(CONFIG_PCIEAER)
  9. /* pci-e port driver needs this function to enable aer */
  10. extern int pci_enable_pcie_error_reporting(struct pci_dev *dev);
  11. extern int pci_find_aer_capability(struct pci_dev *dev);
  12. extern int pci_disable_pcie_error_reporting(struct pci_dev *dev);
  13. extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
  14. #else
  15. static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev)
  16. {
  17. return -EINVAL;
  18. }
  19. static inline int pci_find_aer_capability(struct pci_dev *dev)
  20. {
  21. return 0;
  22. }
  23. static inline int pci_disable_pcie_error_reporting(struct pci_dev *dev)
  24. {
  25. return -EINVAL;
  26. }
  27. static inline int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
  28. {
  29. return -EINVAL;
  30. }
  31. #endif
  32. #endif //_AER_H_