aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/pci-ats.h
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2019-10-09 16:47:15 -0500
committerBjorn Helgaas <bhelgaas@google.com>2019-10-15 16:39:11 -0500
commitfef2dd8b3966517172514ea5a89104ba7745678b (patch)
tree0db0ad958a9b64bd686ed4ef8e5bfc6d23765e5b /include/linux/pci-ats.h
parentPCI/ATS: Remove unnecessary EXPORT_SYMBOL_GPL() (diff)
downloadwireguard-linux-fef2dd8b3966517172514ea5a89104ba7745678b.tar.xz
wireguard-linux-fef2dd8b3966517172514ea5a89104ba7745678b.zip
PCI/ATS: Make pci_restore_pri_state(), pci_restore_pasid_state() private
These interfaces: void pci_restore_pri_state(struct pci_dev *pdev); void pci_restore_pasid_state(struct pci_dev *pdev); are only used in drivers/pci and do not need to be seen by the rest of the kernel. Most them to drivers/pci/pci.h so they're private to the PCI subsystem. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'include/linux/pci-ats.h')
-rw-r--r--include/linux/pci-ats.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/pci-ats.h b/include/linux/pci-ats.h
index 963c11f7c56b..5d62e78946a3 100644
--- a/include/linux/pci-ats.h
+++ b/include/linux/pci-ats.h
@@ -23,21 +23,16 @@ static inline int pci_ats_page_aligned(struct pci_dev *dev)
#ifdef CONFIG_PCI_PRI
int pci_enable_pri(struct pci_dev *pdev, u32 reqs);
void pci_disable_pri(struct pci_dev *pdev);
-void pci_restore_pri_state(struct pci_dev *pdev);
int pci_reset_pri(struct pci_dev *pdev);
int pci_prg_resp_pasid_required(struct pci_dev *pdev);
-#else /* CONFIG_PCI_PRI */
-static inline void pci_restore_pri_state(struct pci_dev *pdev) { }
#endif /* CONFIG_PCI_PRI */
#ifdef CONFIG_PCI_PASID
int pci_enable_pasid(struct pci_dev *pdev, int features);
void pci_disable_pasid(struct pci_dev *pdev);
-void pci_restore_pasid_state(struct pci_dev *pdev);
int pci_pasid_features(struct pci_dev *pdev);
int pci_max_pasids(struct pci_dev *pdev);
#else /* CONFIG_PCI_PASID */
-static inline void pci_restore_pasid_state(struct pci_dev *pdev) { }
static inline int pci_pasid_features(struct pci_dev *pdev)
{ return -EINVAL; }
static inline int pci_max_pasids(struct pci_dev *pdev)