mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 18:41:23 +00:00
2156873f08
Remove obsolete bundled tfp410 driver with its "ti,tilcdc,tfp410" devicetree binding. No platform has ever used this driver in the mainline kernel and if anybody connects tfp410 to tilcdc he or she should use the generic drm tfp410 bridge driver. Signed-off-by: Jyri Sarha <jsarha@ti.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/6e2db6c328467cc51e8d633ecb0ffa7c5736f2e8.1575901747.git.jsarha@ti.com
14 lines
246 B
Makefile
14 lines
246 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ifeq (, $(findstring -W,$(EXTRA_CFLAGS)))
|
|
ccflags-y += -Werror
|
|
endif
|
|
|
|
tilcdc-y := \
|
|
tilcdc_plane.o \
|
|
tilcdc_crtc.o \
|
|
tilcdc_panel.o \
|
|
tilcdc_external.o \
|
|
tilcdc_drv.o
|
|
|
|
obj-$(CONFIG_DRM_TILCDC) += tilcdc.o
|