diff options
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 233b3a092035..15f37f102dd3 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -1301,5 +1301,21 @@ extern void pci_hp_create_module_link(struct pci_slot *pci_slot); | |||
1301 | extern void pci_hp_remove_module_link(struct pci_slot *pci_slot); | 1301 | extern void pci_hp_remove_module_link(struct pci_slot *pci_slot); |
1302 | #endif | 1302 | #endif |
1303 | 1303 | ||
1304 | /** | ||
1305 | * pci_pcie_cap - get the saved PCIe capability offset | ||
1306 | * @dev: PCI device | ||
1307 | * | ||
1308 | * PCIe capability offset is calculated at PCI device initialization | ||
1309 | * time and saved in the data structure. This function returns saved | ||
1310 | * PCIe capability offset. Using this instead of pci_find_capability() | ||
1311 | * reduces unnecessary search in the PCI configuration space. If you | ||
1312 | * need to calculate PCIe capability offset from raw device for some | ||
1313 | * reasons, please use pci_find_capability() instead. | ||
1314 | */ | ||
1315 | static inline int pci_pcie_cap(struct pci_dev *dev) | ||
1316 | { | ||
1317 | return dev->pcie_cap; | ||
1318 | } | ||
1319 | |||
1304 | #endif /* __KERNEL__ */ | 1320 | #endif /* __KERNEL__ */ |
1305 | #endif /* LINUX_PCI_H */ | 1321 | #endif /* LINUX_PCI_H */ |