diff options
author | Christian König <christian.koenig@amd.com> | 2021-02-05 15:58:56 +0100 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2021-05-03 12:50:41 +0200 |
commit | b072b9cd54f3dbd9597f2c0c2b8496a43c179806 (patch) | |
tree | 555ea9cfa47f221a2090e6ef90300944fd141594 /drivers/gpu/drm/ttm/Makefile | |
parent | dc52e41d26610cb7b8e95c7d45aa7457b5dcc002 (diff) | |
download | linux-b072b9cd54f3dbd9597f2c0c2b8496a43c179806.tar.gz |
drm/ttm: add ttm_sys_manager v3
Add a separate manager for the system domain and make function tables
mandatory.
v2: debug is still optional
v3: return void during init
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210430092508.60710-1-christian.koenig@amd.com
Diffstat (limited to 'drivers/gpu/drm/ttm/Makefile')
-rw-r--r-- | drivers/gpu/drm/ttm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/Makefile b/drivers/gpu/drm/ttm/Makefile index 40e5e9da7953..f906b22959cf 100644 --- a/drivers/gpu/drm/ttm/Makefile +++ b/drivers/gpu/drm/ttm/Makefile @@ -4,7 +4,7 @@ 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_device.o ttm_sys_manager.o ttm-$(CONFIG_AGP) += ttm_agp_backend.o obj-$(CONFIG_DRM_TTM) += ttm.o |