mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 07:06:45 +07:00
2da83319a1
For the C file, include <drm/*.h> instead of relative path from include/drm. For headers in include/drm/ttm, simplify the <tty/*.h> with "*.h". This allows us to remove the -Iinclude/drm compiler flag from drivers/gpu/drm/ttm/Makefile (and from other drivers' Makefiles). Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1493009447-31524-3-git-send-email-yamada.masahiro@socionext.com
11 lines
336 B
Makefile
11 lines
336 B
Makefile
#
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
|
|
ttm-y := ttm_memory.o ttm_tt.o ttm_bo.o \
|
|
ttm_bo_util.o ttm_bo_vm.o ttm_module.o \
|
|
ttm_object.o ttm_lock.o ttm_execbuf_util.o ttm_page_alloc.o \
|
|
ttm_bo_manager.o ttm_page_alloc_dma.o
|
|
ttm-$(CONFIG_AGP) += ttm_agp_backend.o
|
|
|
|
obj-$(CONFIG_DRM_TTM) += ttm.o
|