diff options
| author | Flora Cui <[email protected]> | 2016-09-22 03:34:47 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2016-09-23 15:47:50 +0000 |
| commit | 05dcb5c88827cf0f45f706246ce67b2f0cb2914c (patch) | |
| tree | 8fbd0b9ca081bebddfe791916e8b658c8c993ff6 /drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | |
| parent | drm/amdgpu: Constify tables (diff) | |
| download | kernel-05dcb5c88827cf0f45f706246ce67b2f0cb2914c.tar.gz kernel-05dcb5c88827cf0f45f706246ce67b2f0cb2914c.zip | |
drm/amdgpu: fix amdgpu_vm_bo_update param error
Signed-off-by: Flora Cui <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c index 88fbed2389c0..f9f911623917 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c @@ -528,7 +528,7 @@ static void amdgpu_gem_va_update_vm(struct amdgpu_device *adev, goto error_unreserve; if (operation == AMDGPU_VA_OP_MAP) - r = amdgpu_vm_bo_update(adev, bo_va, &bo_va->bo->tbo.mem); + r = amdgpu_vm_bo_update(adev, bo_va, false); error_unreserve: ttm_eu_backoff_reservation(&ticket, &list); |
