]> git.baikalelectronics.ru Git - kernel.git/commit
drm/exynos: add CONFIG_MMU dependency
authorArnd Bergmann <arnd@arndb.de>
Tue, 9 Jul 2019 12:08:48 +0000 (21:08 +0900)
committerInki Dae <inki.dae@samsung.com>
Fri, 2 Aug 2019 06:28:47 +0000 (15:28 +0900)
commit326f28e9210919813ac5df455eb15636d720f2a0
tree452f333c28d37931a312d99c63ce5b2ccd9114da
parent30caef97adc00479f45b652dbf53da8e349b79db
drm/exynos: add CONFIG_MMU dependency

Compile-testing this driver on a NOMMU configuration shows a link failure:

drivers/gpu/drm/exynos/exynos_drm_gem.o: In function `exynos_drm_gem_fault':
exynos_drm_gem.c:(.text+0x484): undefined reference to `vmf_insert_mixed'

Add a CONFIG_MMU dependency to ensure we only enable this in configurations
that build correctly.

Many other drm drivers have the same dependency. It would be nice to
make this work in MMU-less configurations, but evidently nobody has
ever needed this so far.

Fixes: 98ea4cf11237 ("drm/exynos: trigger build of all modules")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Inki Dae <daeinki@gmail.com>
drivers/gpu/drm/exynos/Kconfig