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:
parent
4369a69ec6
commit
ad1a62227f
|
@ -576,7 +576,7 @@ static void radeon_gem_va_update_vm(struct radeon_device *rdev,
|
||||||
error_free:
|
error_free:
|
||||||
drm_free_large(vm_bos);
|
drm_free_large(vm_bos);
|
||||||
|
|
||||||
if (r)
|
if (r && r != -ERESTARTSYS)
|
||||||
DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
|
DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue