Conversion of the remaining printk based drm logging macros to the new
struct drm_device based logging macros in i915/gt/intel_engine_cs.c.

Signed-off-by: Wambui Karuga <[email protected]>
---
 drivers/gpu/drm/i915/gt/intel_engine_cs.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c 
b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
index 084abc577b14..b9511e045eee 100644
--- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
@@ -200,10 +200,10 @@ u32 intel_engine_context_size(struct intel_gt *gt, u8 
class)
                         * out in the wash.
                         */
                        cxt_size = intel_uncore_read(uncore, CXT_SIZE) + 1;
-                       DRM_DEBUG_DRIVER("gen%d CXT_SIZE = %d bytes [0x%08x]\n",
-                                        INTEL_GEN(gt->i915),
-                                        cxt_size * 64,
-                                        cxt_size - 1);
+                       drm_dbg(&gt->i915->drm,
+                               "gen%d CXT_SIZE = %d bytes [0x%08x]\n",
+                               INTEL_GEN(gt->i915), cxt_size * 64,
+                               cxt_size - 1);
                        return round_up(cxt_size * 64, PAGE_SIZE);
                case 3:
                case 2:
@@ -562,7 +562,8 @@ static int init_status_page(struct intel_engine_cs *engine)
         */
        obj = i915_gem_object_create_internal(engine->i915, PAGE_SIZE);
        if (IS_ERR(obj)) {
-               DRM_ERROR("Failed to allocate status page\n");
+               drm_err(&engine->i915->drm,
+                       "Failed to allocate status page\n");
                return PTR_ERR(obj);
        }
 
-- 
2.25.0

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

Reply via email to