[NETFILTER]: Annotate start of kernel fields in NF headers
[linux-2.6/libata-dev.git] / include / linux / aer.h
blobbcf236d825e8ca1e3a2b59f84aa3903fba375630
1 /*
2 * Copyright (C) 2006 Intel Corp.
3 * Tom Long Nguyen (tom.l.nguyen@intel.com)
4 * Zhang Yanmin (yanmin.zhang@intel.com)
5 */
7 #ifndef _AER_H_
8 #define _AER_H_
10 #if defined(CONFIG_PCIEAER)
11 /* pci-e port driver needs this function to enable aer */
12 extern int pci_enable_pcie_error_reporting(struct pci_dev *dev);
13 extern int pci_find_aer_capability(struct pci_dev *dev);
14 extern int pci_disable_pcie_error_reporting(struct pci_dev *dev);
15 extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
16 extern int pci_cleanup_aer_correct_error_status(struct pci_dev *dev);
17 #else
18 static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev)
20 return -EINVAL;
22 static inline int pci_find_aer_capability(struct pci_dev *dev)
24 return 0;
26 static inline int pci_disable_pcie_error_reporting(struct pci_dev *dev)
28 return -EINVAL;
30 static inline int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
32 return -EINVAL;
34 static inline int pci_cleanup_aer_correct_error_status(struct pci_dev *dev)
36 return -EINVAL;
38 #endif
40 #endif //_AER_H_