diff options
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 63cbadce337e..12dd86a82a15 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -994,6 +994,9 @@ extern void pci_restore_msi_state(struct pci_dev *dev); | |||
994 | extern int pci_msi_enabled(void); | 994 | extern int pci_msi_enabled(void); |
995 | #endif | 995 | #endif |
996 | 996 | ||
997 | extern bool pcie_ports_disabled; | ||
998 | extern bool pcie_ports_auto; | ||
999 | |||
997 | #ifndef CONFIG_PCIEASPM | 1000 | #ifndef CONFIG_PCIEASPM |
998 | static inline int pcie_aspm_enabled(void) | 1001 | static inline int pcie_aspm_enabled(void) |
999 | { | 1002 | { |
@@ -1003,6 +1006,14 @@ static inline int pcie_aspm_enabled(void) | |||
1003 | extern int pcie_aspm_enabled(void); | 1006 | extern int pcie_aspm_enabled(void); |
1004 | #endif | 1007 | #endif |
1005 | 1008 | ||
1009 | #ifdef CONFIG_PCIEAER | ||
1010 | void pci_no_aer(void); | ||
1011 | bool pci_aer_available(void); | ||
1012 | #else | ||
1013 | static inline void pci_no_aer(void) { } | ||
1014 | static inline bool pci_aer_available(void) { return false; } | ||
1015 | #endif | ||
1016 | |||
1006 | #ifndef CONFIG_PCIE_ECRC | 1017 | #ifndef CONFIG_PCIE_ECRC |
1007 | static inline void pcie_set_ecrc_checking(struct pci_dev *dev) | 1018 | static inline void pcie_set_ecrc_checking(struct pci_dev *dev) |
1008 | { | 1019 | { |