Skip to content

Commit

Permalink
drm/radeon: don't print error on -ERESTARTSYS
Browse files Browse the repository at this point in the history
Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Christian König authored and Alex Deucher committed Jan 12, 2015
1 parent 4369a69 commit ad1a622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/radeon/radeon_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit ad1a622

Please sign in to comment.