mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 00:09:45 +07:00
88b39bbfc9
With the include directives under include/drm/ fixed, this flag is no longer needed. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1493009447-31524-23-git-send-email-yamada.masahiro@socionext.com
25 lines
454 B
Makefile
25 lines
454 B
Makefile
#
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
# Direct Rendering Infrastructure (DRI)
|
|
#
|
|
|
|
obj-y += dss/
|
|
obj-y += displays/
|
|
|
|
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
|