diff options
author | Mark Brown <broonie@kernel.org> | 2014-12-15 10:54:42 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-12-16 15:40:29 -0500 |
commit | 20911ce6078fd1503dbf73f761316c66738bf83b (patch) | |
tree | cdcd04b67a758f9df06ae57b7df6f44cc3fa97f9 | |
parent | 1888d2fa314033755026ceddee1fff8f80659fe4 (diff) |
iommu/exynos: Fix arm64 allmodconfig build
The Exynos IOMMU driver uses the ARM specific dmac_flush_range() and
outer_flush_range() functions. This breaks the build on arm64 allmodconfig
in -next since support has been merged for some Exynos ARMv8 SoCs. Add a
dependency on ARM to keep things building until either the driver has the
ARM dependencies removed or the ARMv8 architecture code implements these
ARM specific APIs.
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | drivers/iommu/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig index 6dbfbc209491..d8dd6dba1d2f 100644 --- a/drivers/iommu/Kconfig +++ b/drivers/iommu/Kconfig | |||
@@ -174,7 +174,7 @@ config TEGRA_IOMMU_SMMU | |||
174 | 174 | ||
175 | config EXYNOS_IOMMU | 175 | config EXYNOS_IOMMU |
176 | bool "Exynos IOMMU Support" | 176 | bool "Exynos IOMMU Support" |
177 | depends on ARCH_EXYNOS | 177 | depends on ARCH_EXYNOS && ARM |
178 | select IOMMU_API | 178 | select IOMMU_API |
179 | select ARM_DMA_USE_IOMMU | 179 | select ARM_DMA_USE_IOMMU |
180 | help | 180 | help |