From: Joerg Roedel Date: Tue, 27 Sep 2011 13:57:14 +0000 (+0200) Subject: PCI: Export ATS functions to modules X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d4c0636c2107010f0ef8c4dfbb1d6368ae3b3ed9;p=linux-beck.git PCI: Export ATS functions to modules This patch makes the ATS functions usable for modules. They will be used by a module implementing some advanced AMD IOMMU features. Reviewed-by: Bjorn Helgaas Signed-off-by: Joerg Roedel Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c index ae4bf87afb09..5ceff3e16e1b 100644 --- a/drivers/pci/ats.c +++ b/drivers/pci/ats.c @@ -90,6 +90,7 @@ int pci_enable_ats(struct pci_dev *dev, int ps) return 0; } +EXPORT_SYMBOL_GPL(pci_enable_ats); /** * pci_disable_ats - disable the ATS capability @@ -120,6 +121,7 @@ void pci_disable_ats(struct pci_dev *dev) if (!dev->is_physfn) ats_free_one(dev); } +EXPORT_SYMBOL_GPL(pci_disable_ats); /** * pci_ats_queue_depth - query the ATS Invalidate Queue Depth @@ -153,3 +155,4 @@ int pci_ats_queue_depth(struct pci_dev *dev) return PCI_ATS_CAP_QDEP(cap) ? PCI_ATS_CAP_QDEP(cap) : PCI_ATS_MAX_QDEP; } +EXPORT_SYMBOL_GPL(pci_ats_queue_depth);