Unverified Commit 9fcc00ea authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Javier Martinez Canillas
Browse files

drm: Drop ARCH_MULTIPLATFORM from dependencies



Some of these dependencies used to be sensible when only a small part of
the platforms supported by ARCH=arm could be compiled together in a
single kernel image. Nowadays ARCH_MULTIPLATFORM is only used as a guard
for kernel options incompatible with a multiplatform image. See commit
84fc8636 ("ARM: make ARCH_MULTIPLATFORM user-visible") for some more
details.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Reviewed-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Reviewed-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221209220555.3631364-1-u.kleine-koenig@pengutronix.de
parent c87e859c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
config DRM_EXYNOS
	tristate "DRM Support for Samsung SoC Exynos Series"
	depends on OF && DRM && COMMON_CLK
	depends on ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || ARCH_MULTIPLATFORM || COMPILE_TEST
	depends on ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
	depends on MMU
	select DRM_DISPLAY_HELPER if DRM_EXYNOS_DP
	select DRM_KMS_HELPER
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ config DRM_IMX
	select DRM_KMS_HELPER
	select VIDEOMODE_HELPERS
	select DRM_GEM_DMA_HELPER
	depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM || COMPILE_TEST)
	depends on DRM && (ARCH_MXC || COMPILE_TEST)
	depends on IMX_IPUV3_CORE
	help
	  enable i.MX graphics support
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
config DRM_OMAP
	tristate "OMAP DRM"
	depends on DRM && OF
	depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
	depends on ARCH_OMAP2PLUS
	select DRM_KMS_HELPER
	select VIDEOMODE_HELPERS
	select HDMI
+1 −1
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
config DRM_STI
	tristate "DRM Support for STMicroelectronics SoC stiH4xx Series"
	depends on OF && DRM && (ARCH_STI || ARCH_MULTIPLATFORM)
	depends on OF && DRM && ARCH_STI
	select RESET_CONTROLLER
	select DRM_KMS_HELPER
	select DRM_GEM_DMA_HELPER
+1 −1
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
config DRM_STM
	tristate "DRM Support for STMicroelectronics SoC Series"
	depends on DRM && (ARCH_STM32 || ARCH_MULTIPLATFORM)
	depends on DRM && ARCH_STM32
	select DRM_KMS_HELPER
	select DRM_GEM_DMA_HELPER
	select DRM_PANEL_BRIDGE
Loading