drm/i915: Stop spamming the logs with PLL state
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 2 May 2023 14:39:04 +0000 (17:39 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 13 Sep 2023 14:10:34 +0000 (17:10 +0300)
encoder->get_config() is not the place where the state
should be dumped. Get rid of the spam.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230502143906.2401-10-ville.syrjala@linux.intel.com
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
drivers/gpu/drm/i915/display/intel_ddi.c

index 30dfc7f0bafec7175608b2267c8c9e1f2052efca..6454c9fd81230d002cb7b05ed1c140b9626eceb0 100644 (file)
@@ -3855,11 +3855,9 @@ static void mtl_ddi_get_config(struct intel_encoder *encoder,
                crtc_state->port_clock = intel_mtl_tbt_calc_port_clock(encoder);
        } else if (intel_is_c10phy(i915, phy)) {
                intel_c10pll_readout_hw_state(encoder, &crtc_state->cx0pll_state.c10);
-               intel_c10pll_dump_hw_state(i915, &crtc_state->cx0pll_state.c10);
                crtc_state->port_clock = intel_c10pll_calc_port_clock(encoder, &crtc_state->cx0pll_state.c10);
        } else {
                intel_c20pll_readout_hw_state(encoder, &crtc_state->cx0pll_state.c20);
-               intel_c20pll_dump_hw_state(i915, &crtc_state->cx0pll_state.c20);
                crtc_state->port_clock = intel_c20pll_calc_port_clock(encoder, &crtc_state->cx0pll_state.c20);
        }