The expected/found values were swapped in a debug message, fix this up.

Signed-off-by: Imre Deak <[email protected]>
---
 drivers/gpu/drm/i915/selftests/i915_vma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/selftests/i915_vma.c 
b/drivers/gpu/drm/i915/selftests/i915_vma.c
index 2c067343d65f..ffea2602a781 100644
--- a/drivers/gpu/drm/i915/selftests/i915_vma.c
+++ b/drivers/gpu/drm/i915/selftests/i915_vma.c
@@ -953,7 +953,7 @@ static int igt_vma_remapped_gtt(void *arg)
                                        if (val != exp) {
                                                pr_err("%s VMA write test 
failed, expected 0x%x, found 0x%x\n",
                                                       *t == 
I915_GGTT_VIEW_ROTATED ? "Rotated" : "Remapped",
-                                                      val, exp);
+                                                      exp, val);
                                                i915_vma_unpin_iomap(vma);
                                                err = -EINVAL;
                                                goto out;
-- 
2.25.1

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to