diff options
author | Robin Murphy <robin.murphy@arm.com> | 2022-08-16 20:28:05 +0300 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2022-09-09 10:26:22 +0300 |
commit | f2042ed21da7f8886c93efefff61f93e6d57e9bd (patch) | |
tree | ae6e9f236e9b7e1cb00758ac46c35c9b1324f7bd /drivers/iommu/arm/arm-smmu-v3 | |
parent | fa49364cd5e65797014688cba623541083b3e5b0 (diff) | |
download | linux-f2042ed21da7f8886c93efefff61f93e6d57e9bd.tar.xz |
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/arm/arm-smmu-v3')
-rw-r--r-- | drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c index 241efb7482e9..b788a38d8fdf 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -14,7 +14,6 @@ #include <linux/bitops.h> #include <linux/crash_dump.h> #include <linux/delay.h> -#include <linux/dma-iommu.h> #include <linux/err.h> #include <linux/interrupt.h> #include <linux/io-pgtable.h> @@ -29,6 +28,7 @@ #include <linux/platform_device.h> #include "arm-smmu-v3.h" +#include "../../dma-iommu.h" #include "../../iommu-sva-lib.h" static bool disable_bypass = true; |