diff options
author | John Garry <[email protected]> | 2021-03-25 20:30:01 +0800 |
---|---|---|
committer | Joerg Roedel <[email protected]> | 2021-04-07 10:30:48 +0200 |
commit | 6e1ea50a065ed1ff8a27cde3e1876ed7dfda97fd (patch) | |
tree | 0d8a92ba3a0806b7f0c7b5f2de4ada8dd04ec639 | |
parent | 149448b353e2517ecc6eced7d9f46e9f3e08b89e (diff) |
iommu: Stop exporting free_iova_fast()
Function free_iova_fast() is only referenced by dma-iommu.c, which can
only be in-built, so stop exporting it.
This was missed in an earlier tidy-up patch.
Signed-off-by: John Garry <[email protected]>
Reviewed-by: Robin Murphy <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Joerg Roedel <[email protected]>
-rw-r--r-- | drivers/iommu/iova.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c index c9726e1b9e11..b7ecd5b08039 100644 --- a/drivers/iommu/iova.c +++ b/drivers/iommu/iova.c @@ -535,7 +535,6 @@ free_iova_fast(struct iova_domain *iovad, unsigned long pfn, unsigned long size) free_iova(iovad, pfn); } -EXPORT_SYMBOL_GPL(free_iova_fast); #define fq_ring_for_each(i, fq) \ for ((i) = (fq)->head; (i) != (fq)->tail; (i) = ((i) + 1) % IOVA_FQ_SIZE) |