Skip to content

Commit

Permalink
drm/amdgpu:Correct max uvd handles
Browse files Browse the repository at this point in the history
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
  • Loading branch information
James Zhu authored and Alex Deucher committed Mar 7, 2018
1 parent ebb043f commit ec7549d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ int amdgpu_uvd_suspend(struct amdgpu_device *adev)
if (atomic_read(&adev->uvd.handles[i]))
break;

if (i == AMDGPU_MAX_UVD_HANDLES)
if (i == adev->uvd.max_handles)
return 0;

size = amdgpu_bo_size(adev->uvd.vcpu_bo);
Expand Down

0 comments on commit ec7549d

Please sign in to comment.