diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2016-08-08 12:28:25 +0900 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-08-08 11:33:32 -0400 |
commit | 4e2f0caa3960c1890ca4a7650d5e6bebbcc8ca04 (patch) | |
tree | dfaac1b9a147088cabcdbd0ee21ea2c8fd8efb33 /drivers/gpu/drm/nouveau/nouveau_bo.c | |
parent | 7b8082bc0774b75a8a3f457f2399a85d4d515c56 (diff) | |
download | linux-stable-4e2f0caa3960c1890ca4a7650d5e6bebbcc8ca04.tar.gz linux-stable-4e2f0caa3960c1890ca4a7650d5e6bebbcc8ca04.tar.bz2 linux-stable-4e2f0caa3960c1890ca4a7650d5e6bebbcc8ca04.zip |
drm/ttm: Remove unused parameter evict from ttm_bo_move_ttm
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_bo.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index 6190035edfea..01460d765a88 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c @@ -1151,7 +1151,7 @@ nouveau_bo_move_flipd(struct ttm_buffer_object *bo, bool evict, bool intr, if (ret) goto out; - ret = ttm_bo_move_ttm(bo, true, intr, no_wait_gpu, new_mem); + ret = ttm_bo_move_ttm(bo, intr, no_wait_gpu, new_mem); out: ttm_bo_mem_put(bo, &tmp_mem); return ret; @@ -1179,7 +1179,7 @@ nouveau_bo_move_flips(struct ttm_buffer_object *bo, bool evict, bool intr, if (ret) return ret; - ret = ttm_bo_move_ttm(bo, true, intr, no_wait_gpu, &tmp_mem); + ret = ttm_bo_move_ttm(bo, intr, no_wait_gpu, &tmp_mem); if (ret) goto out; |