mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 02:46:06 +00:00
e3912d09bf
Add the initial version of unit tests for ttm_device struct, together with helper functions. Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com> Reviewed-by: Christian König <christian.koenig@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/3d1cc45c8a0cf536b92a850e0025f6c555de0169.1691487006.git.karolina.stolarek@intel.com Signed-off-by: Christian König <christian.koenig@amd.com>
12 lines
396 B
Makefile
12 lines
396 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
|
|
ttm-y := ttm_tt.o ttm_bo.o ttm_bo_util.o ttm_bo_vm.o ttm_module.o \
|
|
ttm_execbuf_util.o ttm_range_manager.o ttm_resource.o ttm_pool.o \
|
|
ttm_device.o ttm_sys_manager.o
|
|
ttm-$(CONFIG_AGP) += ttm_agp_backend.o
|
|
|
|
obj-$(CONFIG_DRM_TTM) += ttm.o
|
|
obj-$(CONFIG_DRM_TTM_KUNIT_TEST) += tests/
|