diff options
author | Christian König <christian.koenig@amd.com> | 2016-02-03 16:01:06 +0100 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-02-10 14:17:23 -0500 |
commit | d7af97dbccf01bc9ac6f35e2d81b0caafc5d7d25 (patch) | |
tree | 2fe2cf805bfd338fe43f2dcad13f7c4a11309154 /drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c | |
parent | 0856cab1a6298d9cbf037dc683ce514cadb28040 (diff) | |
download | linux-d7af97dbccf01bc9ac6f35e2d81b0caafc5d7d25.tar.gz linux-d7af97dbccf01bc9ac6f35e2d81b0caafc5d7d25.tar.bz2 linux-d7af97dbccf01bc9ac6f35e2d81b0caafc5d7d25.zip |
drm/amdgpu: send UVD IB tests directly to the ring again
We need the IB test for GPU resets as well and
the scheduler should be stoped then.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucer@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c index d50679222b65..232fe2a3a9b8 100644 --- a/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c +++ b/drivers/gpu/drm/amd/amdgpu/uvd_v4_2.c @@ -522,7 +522,7 @@ static int uvd_v4_2_ring_test_ib(struct amdgpu_ring *ring) goto error; } - r = amdgpu_uvd_get_destroy_msg(ring, 1, &fence); + r = amdgpu_uvd_get_destroy_msg(ring, 1, true, &fence); if (r) { DRM_ERROR("amdgpu: failed to get destroy ib (%d).\n", r); goto error; |