mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
5fb7652beb
All drivers under menu EXYNOS_VIDEO depend on either ARCH_S5PV210 or ARCH_EXYNOS, so add these as dependencies to the menu itself. This avoids presenting an empty and useless menu on other architectures. Then drivers under the menu only need a dependency if they depend on one of the supported architectures specifically. Signed-off-by: Jean Delvare <jdelvare@suse.de> Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> Cc: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
32 lines
650 B
Text
32 lines
650 B
Text
#
|
|
# Exynos Video configuration
|
|
#
|
|
|
|
menuconfig EXYNOS_VIDEO
|
|
bool "Exynos Video driver support"
|
|
depends on ARCH_S5PV210 || ARCH_EXYNOS
|
|
help
|
|
This enables support for EXYNOS Video device.
|
|
|
|
if EXYNOS_VIDEO
|
|
|
|
#
|
|
# MIPI DSI driver
|
|
#
|
|
|
|
config EXYNOS_MIPI_DSI
|
|
bool "EXYNOS MIPI DSI driver support."
|
|
select GENERIC_PHY
|
|
help
|
|
This enables support for MIPI-DSI device.
|
|
|
|
config EXYNOS_LCD_S6E8AX0
|
|
bool "S6E8AX0 MIPI AMOLED LCD Driver"
|
|
depends on EXYNOS_MIPI_DSI && BACKLIGHT_CLASS_DEVICE
|
|
depends on (LCD_CLASS_DEVICE = y)
|
|
default n
|
|
help
|
|
If you have an S6E8AX0 MIPI AMOLED LCD Panel, say Y to enable its
|
|
LCD control driver.
|
|
|
|
endif # EXYNOS_VIDEO
|