]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
gpu: host1x: Unconditionally select IOMMU_IOVA
authorThierry Reding <treding@nvidia.com>
Thu, 29 Aug 2019 15:56:53 +0000 (17:56 +0200)
committerThierry Reding <treding@nvidia.com>
Fri, 1 Nov 2019 09:49:17 +0000 (10:49 +0100)
Currently configurations can be generated where IOMMU_SUPPORT is
disabled but IOMMU_IOVA is built as a module and HOST1X as built-in. In
such a case, the symbols guarded by IOMMU_IOVA will not be available
when linking the host1x driver and cause a linking failure.

Simplify this by unconditionally selecting IOMMU_IOVA, which makes sure
that it will be forced to =y if HOST1X=y. Technically we can now get
IOMMU_IOVA code built-in even if we don't use it (host1x only uses it
when IOMMU_SUPPORT is also enabled), but such configuration are of a
mostly academic nature. In all practical configurations we want IOMMU
support anyway.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/host1x/Kconfig

index cf987a317a55c0e18cf7748e8757b41f5ecbe258..6dab94adf25e5325e4b3c9987cc960dae8170c35 100644 (file)
@@ -2,7 +2,7 @@
 config TEGRA_HOST1X
        tristate "NVIDIA Tegra host1x driver"
        depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
-       select IOMMU_IOVA if IOMMU_SUPPORT
+       select IOMMU_IOVA
        help
          Driver for the NVIDIA Tegra host1x hardware.