[Intel-gfx] [PATCH v2 03/25] drm/i915/selftest: Fix debug message in igt_vma_remapped_gtt()
Imre Deak
imre.deak at intel.com
Thu Mar 25 21:47:46 UTC 2021
The expected/found values were swapped in a debug message, fix this up.
Signed-off-by: Imre Deak <imre.deak at intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
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 35481cfbb6353..23f6a212a391d 100644
--- a/drivers/gpu/drm/i915/selftests/i915_vma.c
+++ b/drivers/gpu/drm/i915/selftests/i915_vma.c
@@ -959,7 +959,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
More information about the Intel-gfx
mailing list