blob: f7df1eefc1071ac71a985650343ec1ca2bfbf9ac [file] [log] [blame]
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001/*
2 * Copyright (C) 2006 Intel Corp.
3 * Tom Long Nguyen (tom.l.nguyen@intel.com)
4 * Zhang Yanmin (yanmin.zhang@intel.com)
5 */
6
7#ifndef _AER_H_
8#define _AER_H_
9
10#if defined(CONFIG_PCIEAER)
11/* pci-e port driver needs this function to enable aer */
12extern int pci_enable_pcie_error_reporting(struct pci_dev *dev);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080013extern int pci_disable_pcie_error_reporting(struct pci_dev *dev);
14extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
15#else
Randy Dunlap5547bbe2007-08-23 10:37:53 -070016static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev)
17{
18 return -EINVAL;
19}
Randy Dunlap5547bbe2007-08-23 10:37:53 -070020static inline int pci_disable_pcie_error_reporting(struct pci_dev *dev)
21{
22 return -EINVAL;
23}
24static inline int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
25{
26 return -EINVAL;
27}
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080028#endif
29
30#endif //_AER_H_
31