drm/radeon: don't print error on -ERESTARTSYS

Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Christian König 2015-01-09 11:07:49 +01:00 committed by Alex Deucher
parent 4369a69ec6
commit ad1a62227f
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ static void radeon_gem_va_update_vm(struct radeon_device *rdev,
error_free:
drm_free_large(vm_bos);
if (r)
if (r && r != -ERESTARTSYS)
DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
}