diff options
author | Robin Murphy <robin.murphy@arm.com> | 2022-08-16 19:28:05 +0200 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2022-09-09 09:26:22 +0200 |
commit | f2042ed21da7f8886c93efefff61f93e6d57e9bd (patch) | |
tree | ae6e9f236e9b7e1cb00758ac46c35c9b1324f7bd /drivers/iommu/apple-dart.c | |
parent | iommu/dma: Move public interfaces to linux/iommu.h (diff) | |
download | linux-f2042ed21da7f8886c93efefff61f93e6d57e9bd.tar.xz linux-f2042ed21da7f8886c93efefff61f93e6d57e9bd.zip |
iommu/dma: Make header private
Now that dma-iommu.h only contains internal interfaces, make it
private to the IOMMU subsytem.
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Link: https://lore.kernel.org/r/b237e06c56a101f77af142a54b629b27aa179d22.1660668998.git.robin.murphy@arm.com
[ joro : re-add stub for iommu_dma_get_resv_regions ]
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/apple-dart.c')
-rw-r--r-- | drivers/iommu/apple-dart.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/iommu/apple-dart.c b/drivers/iommu/apple-dart.c index 437aed674fba..79643b84cb14 100644 --- a/drivers/iommu/apple-dart.c +++ b/drivers/iommu/apple-dart.c @@ -15,7 +15,6 @@ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/dev_printk.h> -#include <linux/dma-iommu.h> #include <linux/dma-mapping.h> #include <linux/err.h> #include <linux/interrupt.h> @@ -33,6 +32,8 @@ #include <linux/swab.h> #include <linux/types.h> +#include "dma-iommu.h" + #define DART_MAX_STREAMS 16 #define DART_MAX_TTBR 4 #define MAX_DARTS_PER_DEVICE 2 |