From: Wei Yongjun <weiyongj...@huawei.com>

Fix the return value check which testing the wrong variable.

Signed-off-by: Wei Yongjun <weiyongj...@huawei.com>
---
 drivers/gpu/drm/i915/selftests/i915_sw_fence.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/selftests/i915_sw_fence.c 
b/drivers/gpu/drm/i915/selftests/i915_sw_fence.c
index 98baf10..c31d439 100644
--- a/drivers/gpu/drm/i915/selftests/i915_sw_fence.c
+++ b/drivers/gpu/drm/i915/selftests/i915_sw_fence.c
@@ -311,7 +311,7 @@ static int test_AB_C(void *arg)
        }
 
        C = alloc_fence();
-       if (!B) {
+       if (!C) {
                ret = -ENOMEM;
                goto err_B;
        }
@@ -388,7 +388,7 @@ static int test_C_AB(void *arg)
        }
 
        C = alloc_fence();
-       if (!B) {
+       if (!C) {
                ret = -ENOMEM;
                goto err_B;
        }

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to