]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/aer.h
tg3: use dma_alloc_coherent() instead of pci_alloc_consistent()
[net-next-2.6.git] / include / linux / aer.h
CommitLineData
6c2b374d
ZY
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
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);
6c2b374d
ZY
13extern int pci_disable_pcie_error_reporting(struct pci_dev *dev);
14extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
15#else
5547bbee
RD
16static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev)
17{
18 return -EINVAL;
19}
5547bbee
RD
20static 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}
6c2b374d
ZY
28#endif
29
30#endif //_AER_H_
31