aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2015-06-16 08:50:02 -0400
committerAlex Deucher <alexander.deucher@amd.com>2015-06-29 11:21:45 -0400
commit68fdd3df79ee4bff4d63dab920b01d9ed5731115 (patch)
tree6a48cb8c760890e864af1711875ae3528b342059 /drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
parent332300b97e700e000739c8db782406b6fd8f092d (diff)
drm/amdgpu: silence invalid error message
Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Leo Liu <leo.liu@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c2
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 0ec222295fee..c3ea3635e1fc 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
@@ -496,7 +496,7 @@ error_unreserve:
496error_free: 496error_free:
497 drm_free_large(vm_bos); 497 drm_free_large(vm_bos);
498 498
499 if (r) 499 if (r && r != -ERESTARTSYS)
500 DRM_ERROR("Couldn't update BO_VA (%d)\n", r); 500 DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
501} 501}
502 502