diff options
| author | Christian König <[email protected]> | 2015-06-16 12:50:02 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2015-06-29 15:21:45 +0000 |
| commit | 68fdd3df79ee4bff4d63dab920b01d9ed5731115 (patch) | |
| tree | 6a48cb8c760890e864af1711875ae3528b342059 /drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | |
| parent | drm/amdgpu: fix wrong type (diff) | |
| download | kernel-68fdd3df79ee4bff4d63dab920b01d9ed5731115.tar.gz kernel-68fdd3df79ee4bff4d63dab920b01d9ed5731115.zip | |
drm/amdgpu: silence invalid error message
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Leo Liu <[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 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: error_free: drm_free_large(vm_bos); - if (r) + if (r && r != -ERESTARTSYS) DRM_ERROR("Couldn't update BO_VA (%d)\n", r); } |
