diff options
author | Dave Airlie <airlied@redhat.com> | 2020-10-20 04:03:19 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2020-10-21 06:46:07 +0300 |
commit | bfe5e585b44fb810e33fe54d4d822c6b2b40488c (patch) | |
tree | 8146d94025f603d0903a81918a830dd124cd4d68 /include | |
parent | 6d820003295977f865257f1845bcdebc5dab4fb5 (diff) | |
download | linux-bfe5e585b44fb810e33fe54d4d822c6b2b40488c.tar.xz |
drm/ttm: move last binding into the drivers.
This moves the call to tt binding into the driver move,
and drops the driver callback.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201020010319.1692445-8-airlied@gmail.com
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/ttm/ttm_bo_driver.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h index 0c4efc169f46..72f106b335e9 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h @@ -91,20 +91,6 @@ struct ttm_bo_driver { void (*ttm_tt_unpopulate)(struct ttm_bo_device *bdev, struct ttm_tt *ttm); /** - * ttm_tt_bind - * - * @bdev: Pointer to a ttm device - * @ttm: Pointer to a struct ttm_tt. - * @bo_mem: Pointer to a struct ttm_resource describing the - * memory type and location for binding. - * - * Bind the backend pages into the aperture in the location - * indicated by @bo_mem. This function should be able to handle - * differences between aperture and system page sizes. - */ - int (*ttm_tt_bind)(struct ttm_bo_device *bdev, struct ttm_tt *ttm, struct ttm_resource *bo_mem); - - /** * ttm_tt_destroy * * @bdev: Pointer to a ttm device |