drm/amdgpu: fix sdma_v2_4_ring_test_ib
authorChristian König <christian.koenig@amd.com>
Wed, 17 Aug 2016 12:10:37 +0000 (14:10 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 19 Aug 2016 16:26:30 +0000 (12:26 -0400)
Typo in checking the return code.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/sdma_v2_4.c

index 1351c7e..a64715d 100644 (file)
@@ -714,7 +714,7 @@ static int sdma_v2_4_ring_test_ib(struct amdgpu_ring *ring, long timeout)
                DRM_ERROR("amdgpu: IB test timed out\n");
                r = -ETIMEDOUT;
                goto err1;
-       } else if (r) {
+       } else if (r < 0) {
                DRM_ERROR("amdgpu: fence wait failed (%ld).\n", r);
                goto err1;
        }