diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c index dbbe986f90f2..9430d4809b53 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c | |||
@@ -1798,7 +1798,7 @@ static int gfx_v6_0_ring_test_ring(struct amdgpu_ring *ring) | |||
1798 | DRM_UDELAY(1); | 1798 | DRM_UDELAY(1); |
1799 | } | 1799 | } |
1800 | if (i < adev->usec_timeout) { | 1800 | if (i < adev->usec_timeout) { |
1801 | DRM_INFO("ring test on %d succeeded in %d usecs\n", ring->idx, i); | 1801 | DRM_DEBUG("ring test on %d succeeded in %d usecs\n", ring->idx, i); |
1802 | } else { | 1802 | } else { |
1803 | DRM_ERROR("amdgpu: ring %d test failed (scratch(0x%04X)=0x%08X)\n", | 1803 | DRM_ERROR("amdgpu: ring %d test failed (scratch(0x%04X)=0x%08X)\n", |
1804 | ring->idx, scratch, tmp); | 1804 | ring->idx, scratch, tmp); |
@@ -1951,7 +1951,7 @@ static int gfx_v6_0_ring_test_ib(struct amdgpu_ring *ring, long timeout) | |||
1951 | } | 1951 | } |
1952 | tmp = RREG32(scratch); | 1952 | tmp = RREG32(scratch); |
1953 | if (tmp == 0xDEADBEEF) { | 1953 | if (tmp == 0xDEADBEEF) { |
1954 | DRM_INFO("ib test on ring %d succeeded\n", ring->idx); | 1954 | DRM_DEBUG("ib test on ring %d succeeded\n", ring->idx); |
1955 | r = 0; | 1955 | r = 0; |
1956 | } else { | 1956 | } else { |
1957 | DRM_ERROR("amdgpu: ib test failed (scratch(0x%04X)=0x%08X)\n", | 1957 | DRM_ERROR("amdgpu: ib test failed (scratch(0x%04X)=0x%08X)\n", |