drm/i915: Stop printing pipe name as hex
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 22 Nov 2023 09:31:36 +0000 (11:31 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 24 Nov 2023 07:38:50 +0000 (09:38 +0200)
Print the pipe name in ascii rather than hex.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231122093137.1509-3-ville.syrjala@linux.intel.com
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
drivers/gpu/drm/i915/display/intel_dpll_mgr.c

index 7958d0bd851e11e3c43347eb26ccb9c157714e64..ef57dad1a9cb7912cf98c4d344b35d29757c8f06 100644 (file)
@@ -4537,7 +4537,7 @@ void intel_shared_dpll_state_verify(struct intel_atomic_state *state,
                                "pll active mismatch (didn't expect pipe %c in active mask (0x%x))\n",
                                pipe_name(crtc->pipe), pll->active_mask);
                I915_STATE_WARN(i915, pll->state.pipe_mask & pipe_mask,
-                               "pll enabled crtcs mismatch (found %x in enabled mask (0x%x))\n",
+                               "pll enabled crtcs mismatch (found pipe %c in enabled mask (0x%x))\n",
                                pipe_name(crtc->pipe), pll->state.pipe_mask);
        }
 }