mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
b961c48b05
Add dummy primary plane implementation. LCDC does not really have planes, only simple framebuffer that is mandatory. This primary plane implementation has the necessary checks for implementing simple framebuffer trough DRM plane abstraction. For setting the actual framebuffer the implementation relies on a CRTC side function. Signed-off-by: Jyri Sarha <jsarha@ti.com>
17 lines
355 B
Makefile
17 lines
355 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_plane.o \
|
|
tilcdc_crtc.o \
|
|
tilcdc_tfp410.o \
|
|
tilcdc_panel.o \
|
|
tilcdc_external.o \
|
|
tilcdc_drv.o
|
|
|
|
obj-$(CONFIG_DRM_TILCDC) += tilcdc.o
|