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

drm/arc: Move to drm/tiny

Because it is.

v2: Delete now unused crtc funcs (0day)

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Cc: Alexey Brodkin <abrodkin@synopsys.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210112084358.2771527-15-daniel.vetter@ffwll.ch

+12 -17
+1 -1
MAINTAINERS
··· 1312 1312 M: Alexey Brodkin <abrodkin@synopsys.com> 1313 1313 S: Supported 1314 1314 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt 1315 - F: drivers/gpu/drm/arc/ 1315 + F: drivers/gpu/drm/tiny/arcpgu.c 1316 1316 1317 1317 ARCNET NETWORK LAYER 1318 1318 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
-2
drivers/gpu/drm/Kconfig
··· 348 348 349 349 source "drivers/gpu/drm/etnaviv/Kconfig" 350 350 351 - source "drivers/gpu/drm/arc/Kconfig" 352 - 353 351 source "drivers/gpu/drm/hisilicon/Kconfig" 354 352 355 353 source "drivers/gpu/drm/mediatek/Kconfig"
-1
drivers/gpu/drm/Makefile
··· 111 111 obj-y += bridge/ 112 112 obj-$(CONFIG_DRM_FSL_DCU) += fsl-dcu/ 113 113 obj-$(CONFIG_DRM_ETNAVIV) += etnaviv/ 114 - obj-$(CONFIG_DRM_ARCPGU)+= arc/ 115 114 obj-y += hisilicon/ 116 115 obj-$(CONFIG_DRM_ZTE) += zte/ 117 116 obj-$(CONFIG_DRM_MXSFB) += mxsfb/
-10
drivers/gpu/drm/arc/Kconfig
··· 1 - # SPDX-License-Identifier: GPL-2.0-only 2 - config DRM_ARCPGU 3 - tristate "ARC PGU" 4 - depends on DRM && OF 5 - select DRM_KMS_CMA_HELPER 6 - select DRM_KMS_HELPER 7 - help 8 - Choose this option if you have an ARC PGU controller. 9 - 10 - If M is selected the module will be called arcpgu.
-3
drivers/gpu/drm/arc/Makefile
··· 1 - # SPDX-License-Identifier: GPL-2.0-only 2 - arcpgu-y := arcpgu_drv.o 3 - obj-$(CONFIG_DRM_ARCPGU) += arcpgu.o
drivers/gpu/drm/arc/arcpgu_drv.c drivers/gpu/drm/tiny/arcpgu.c
+10
drivers/gpu/drm/tiny/Kconfig
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 3 + config DRM_ARCPGU 4 + tristate "ARC PGU" 5 + depends on DRM && OF 6 + select DRM_KMS_CMA_HELPER 7 + select DRM_KMS_HELPER 8 + help 9 + Choose this option if you have an ARC PGU controller. 10 + 11 + If M is selected the module will be called arcpgu. 12 + 3 13 config DRM_CIRRUS_QEMU 4 14 tristate "Cirrus driver for QEMU emulated device" 5 15 depends on DRM && PCI && MMU
+1
drivers/gpu/drm/tiny/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 3 + obj-$(CONFIG_DRM_ARCPGU) += arcpgu.o 3 4 obj-$(CONFIG_DRM_CIRRUS_QEMU) += cirrus.o 4 5 obj-$(CONFIG_DRM_GM12U320) += gm12u320.o 5 6 obj-$(CONFIG_TINYDRM_HX8357D) += hx8357d.o