diff options
author | Dave Airlie <airlied@redhat.com> | 2020-10-20 04:03:16 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2020-10-21 06:43:54 +0300 |
commit | f227ccc9612f5d2f6315874c93acf3945fd51dfb (patch) | |
tree | 47faf5df8b4ebbd59fc37d3524f906dd3e7a5442 /drivers/gpu/drm/ttm/ttm_bo.c | |
parent | 29a1d482e4044ab76d0c0f6341212f1a51f48236 (diff) | |
download | linux-f227ccc9612f5d2f6315874c93acf3945fd51dfb.tar.xz |
drm/ttm: drop unbind callback.
The drivers now control this, so drop unbinding.
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-5-airlied@gmail.com
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_bo.c')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index cbc74a320db2..593e55879019 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -1496,8 +1496,3 @@ int ttm_bo_tt_bind(struct ttm_buffer_object *bo, struct ttm_resource *mem) { return bo->bdev->driver->ttm_tt_bind(bo->bdev, bo->ttm, mem); } - -void ttm_bo_tt_unbind(struct ttm_buffer_object *bo) -{ - bo->bdev->driver->ttm_tt_unbind(bo->bdev, bo->ttm); -} |