diff options
author | James Zhu <James.Zhu@amd.com> | 2018-03-06 14:43:50 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-03-07 16:12:02 -0500 |
commit | ec7549df08c20ec7f046540f4372b646bde50fac (patch) | |
tree | 11eb84be9f1463e04e74baae1e9763512007162c | |
parent | ebb043f267511a6e6ba2ee92e0146552432e8db2 (diff) |
drm/amdgpu:Correct max uvd handles
Max uvd handles should use adev->uvd.max_handles instead of
AMDGPU_MAX_UVD_HANDLES here.
Signed-off-by: James Zhu <James.Zhu@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c index 7ad814d0a487..9d037cb3268a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c | |||
@@ -303,7 +303,7 @@ int amdgpu_uvd_suspend(struct amdgpu_device *adev) | |||
303 | if (atomic_read(&adev->uvd.handles[i])) | 303 | if (atomic_read(&adev->uvd.handles[i])) |
304 | break; | 304 | break; |
305 | 305 | ||
306 | if (i == AMDGPU_MAX_UVD_HANDLES) | 306 | if (i == adev->uvd.max_handles) |
307 | return 0; | 307 | return 0; |
308 | 308 | ||
309 | size = amdgpu_bo_size(adev->uvd.vcpu_bo); | 309 | size = amdgpu_bo_size(adev->uvd.vcpu_bo); |