drm/i915/gt: Use gt_err for GT info
authorTejas Upadhyay <tejas.upadhyay@intel.com>
Fri, 28 Apr 2023 12:59:51 +0000 (18:29 +0530)
committerAndi Shyti <andi.shyti@linux.intel.com>
Wed, 3 May 2023 10:56:10 +0000 (12:56 +0200)
It will be more informative regarding
GT if we use gt_err instead.

Cc: Andi Shyti <andi.shyti@intel.com>
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230428125952.4037964-2-tejas.upadhyay@intel.com
drivers/gpu/drm/i915/gt/selftest_engine_pm.c

index 87c94314cf67438bc110145110b7f20fe661248b..10e556a7eac455da30cbb44f6b8c2553f944eef3 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <linux/sort.h>
 
+#include "gt/intel_gt_print.h"
 #include "i915_selftest.h"
 #include "intel_engine_regs.h"
 #include "intel_gpu_commands.h"
@@ -402,7 +403,7 @@ static int live_engine_pm(void *arg)
 
                        /* gt wakeref is async (deferred to workqueue) */
                        if (intel_gt_pm_wait_for_idle(gt)) {
-                               pr_err("GT failed to idle\n");
+                               gt_err(gt, "GT failed to idle\n");
                                return -EINVAL;
                        }
                }