mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
e1c1174f8d
Don't compile the fbdev emulation code when fbdev emulation support is disabled. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
23 lines
455 B
Makefile
23 lines
455 B
Makefile
#
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
# Direct Rendering Infrastructure (DRI)
|
|
#
|
|
|
|
ccflags-y := -Iinclude/drm -Werror
|
|
omapdrm-y := omap_drv.o \
|
|
omap_irq.o \
|
|
omap_debugfs.o \
|
|
omap_crtc.o \
|
|
omap_plane.o \
|
|
omap_encoder.o \
|
|
omap_connector.o \
|
|
omap_fb.o \
|
|
omap_gem.o \
|
|
omap_gem_dmabuf.o \
|
|
omap_dmm_tiler.o \
|
|
tcm-sita.o
|
|
|
|
omapdrm-$(CONFIG_DRM_FBDEV_EMULATION) += omap_fbdev.o
|
|
|
|
obj-$(CONFIG_DRM_OMAP) += omapdrm.o
|