diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c index 419ba0ce7ee5..015f37bef358 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | |||
@@ -2085,7 +2085,7 @@ static int gfx_v7_0_ring_test_ring(struct amdgpu_ring *ring) | |||
2085 | DRM_UDELAY(1); | 2085 | DRM_UDELAY(1); |
2086 | } | 2086 | } |
2087 | if (i < adev->usec_timeout) { | 2087 | if (i < adev->usec_timeout) { |
2088 | DRM_INFO("ring test on %d succeeded in %d usecs\n", ring->idx, i); | 2088 | DRM_DEBUG("ring test on %d succeeded in %d usecs\n", ring->idx, i); |
2089 | } else { | 2089 | } else { |
2090 | DRM_ERROR("amdgpu: ring %d test failed (scratch(0x%04X)=0x%08X)\n", | 2090 | DRM_ERROR("amdgpu: ring %d test failed (scratch(0x%04X)=0x%08X)\n", |
2091 | ring->idx, scratch, tmp); | 2091 | ring->idx, scratch, tmp); |
@@ -2365,7 +2365,7 @@ static int gfx_v7_0_ring_test_ib(struct amdgpu_ring *ring, long timeout) | |||
2365 | } | 2365 | } |
2366 | tmp = RREG32(scratch); | 2366 | tmp = RREG32(scratch); |
2367 | if (tmp == 0xDEADBEEF) { | 2367 | if (tmp == 0xDEADBEEF) { |
2368 | DRM_INFO("ib test on ring %d succeeded\n", ring->idx); | 2368 | DRM_DEBUG("ib test on ring %d succeeded\n", ring->idx); |
2369 | r = 0; | 2369 | r = 0; |
2370 | } else { | 2370 | } else { |
2371 | DRM_ERROR("amdgpu: ib test failed (scratch(0x%04X)=0x%08X)\n", | 2371 | DRM_ERROR("amdgpu: ib test failed (scratch(0x%04X)=0x%08X)\n", |