drm/i915: Reduce DDI clock gating printk level from NOTICE to DEBUG
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 5 Jun 2024 11:33:36 +0000 (14:33 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 6 Jun 2024 13:25:13 +0000 (16:25 +0300)
No idea why the DDI clock gating print is done with drm_notice().
Just use drm_dbg_kms() since no one is going to be interested in
this under normal circumstances.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240605113336.11194-1-ville.syrjala@linux.intel.com
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_ddi.c

index 3c3fc53376ce37b628947a176fa8b5d84331994b..c76bbd13bb272b2497dbbfbf23ae25183f9e6b72 100644 (file)
@@ -2072,9 +2072,9 @@ void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder)
            !encoder->is_clock_enabled(encoder))
                return;
 
-       drm_notice(&i915->drm,
-                  "[ENCODER:%d:%s] is disabled/in DSI mode with an ungated DDI clock, gate it\n",
-                  encoder->base.base.id, encoder->base.name);
+       drm_dbg_kms(&i915->drm,
+                   "[ENCODER:%d:%s] is disabled/in DSI mode with an ungated DDI clock, gate it\n",
+                   encoder->base.base.id, encoder->base.name);
 
        encoder->disable_clock(encoder);
 }