Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/arm: Delete redundant CONFIG_DRM_ARM

Delete redundant CONFIG_DRM_ARM, and add a menu "ARM devices" to subclass
ARM device drivers.

Signed-off-by: James (Qian) Wang <james.qian.wang@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>

authored by

james qian wang (Arm Technology China) and committed by
Liviu Dudau
37fc9bb0 3affaa5a

+5 -7
+1 -1
drivers/gpu/drm/Makefile
··· 51 51 obj-$(CONFIG_DRM) += drm.o 52 52 obj-$(CONFIG_DRM_MIPI_DSI) += drm_mipi_dsi.o 53 53 obj-$(CONFIG_DRM_PANEL_ORIENTATION_QUIRKS) += drm_panel_orientation_quirks.o 54 - obj-$(CONFIG_DRM_ARM) += arm/ 54 + obj-y += arm/ 55 55 obj-$(CONFIG_DRM_TTM) += ttm/ 56 56 obj-$(CONFIG_DRM_SCHED) += scheduler/ 57 57 obj-$(CONFIG_DRM_TDFX) += tdfx/
+4 -6
drivers/gpu/drm/arm/Kconfig
··· 1 - config DRM_ARM 2 - bool 3 - help 4 - Choose this option to select drivers for ARM's devices 1 + # SPDX-License-Identifier: GPL-2.0 2 + menu "ARM devices" 5 3 6 4 config DRM_HDLCD 7 5 tristate "ARM HDLCD" 8 6 depends on DRM && OF && (ARM || ARM64) 9 7 depends on COMMON_CLK 10 - select DRM_ARM 11 8 select DRM_KMS_HELPER 12 9 select DRM_KMS_CMA_HELPER 13 10 help ··· 26 29 tristate "ARM Mali Display Processor" 27 30 depends on DRM && OF && (ARM || ARM64) 28 31 depends on COMMON_CLK 29 - select DRM_ARM 30 32 select DRM_KMS_HELPER 31 33 select DRM_KMS_CMA_HELPER 32 34 select DRM_GEM_CMA_HELPER ··· 36 40 of the hardware. 37 41 38 42 If compiled as a module it will be called mali-dp. 43 + 44 + endmenu