]> git.samba.org - sfrench/cifs-2.6.git/commit
drm/tegra: Unconditionally select IOMMU_IOVA
authorThierry Reding <treding@nvidia.com>
Thu, 29 Aug 2019 15:52:42 +0000 (17:52 +0200)
committerThierry Reding <treding@nvidia.com>
Fri, 1 Nov 2019 09:49:29 +0000 (10:49 +0100)
commit84db889e6d827eefc3dde130fec8382d2dcb23ac
tree2ea66652b92d4e313c7a91477b32e6b4bd018039
parentc8a2036474882f478845c70c496c3e49635e34c2
drm/tegra: Unconditionally select IOMMU_IOVA

Currently configurations can be generated where IOMMU_SUPPORT is
disabled but IOMMU_IOVA is built as a module and DRM_TEGRA as built-in.
In such a case, the symbols guarded by IOMMU_IOVA will not be available
when linking the Tegra DRM driver and cause a linking failure.

Simplify this by unconditionally selecting IOMMU_IOVA, which makes sure
that it will be forced to =y if DRM_TEGRA=y. Technically we can now get
IOMMU_IOVA code built-in even if we don't use it (Tegra DRM 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/drm/tegra/Kconfig