mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-11 08:46:40 +07:00
4e72215802
Adds a CONFIG_DRM_TILCDC_SLAVE_COMPAT module for "ti,tilcdc,slave" node conversion. The implementation is in tilcdc_slave_compat.c and it uses tilcdc_slave_compat.dts as a basis for creating a DTS overlay. The DTS overlay adds an external tda998x encoder to tilcdc that corresponds to the old tda998x based slave encoder. Signed-off-by: Jyri Sarha <jsarha@ti.com> Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
17 lines
337 B
Makefile
17 lines
337 B
Makefile
ccflags-y := -Iinclude/drm
|
|
ifeq (, $(findstring -W,$(EXTRA_CFLAGS)))
|
|
ccflags-y += -Werror
|
|
endif
|
|
|
|
obj-$(CONFIG_DRM_TILCDC_SLAVE_COMPAT) += tilcdc_slave_compat.o \
|
|
tilcdc_slave_compat.dtb.o
|
|
|
|
tilcdc-y := \
|
|
tilcdc_crtc.o \
|
|
tilcdc_tfp410.o \
|
|
tilcdc_panel.o \
|
|
tilcdc_external.o \
|
|
tilcdc_drv.o
|
|
|
|
obj-$(CONFIG_DRM_TILCDC) += tilcdc.o
|