From a38a005d95796fb5d5b8c8be325facc75c4708c9 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Wed, 26 Feb 2025 12:01:09 +0200 Subject: [PATCH] drm/i915/pfit: fix comment style for moved comments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Adhere to coding style. Reviewed-by: Ville Syrjälä Signed-off-by: Jani Nikula Link: https://patchwork.freedesktop.org/patch/msgid/d3bc49cf04473a0be07bab1ad7fd9df1f671307f.1740564009.git.jani.nikula@intel.com --- drivers/gpu/drm/i915/display/intel_pfit.c | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c b/drivers/gpu/drm/i915/display/intel_pfit.c index 0a7609020c17..5e4a6ef2ff8d 100644 --- a/drivers/gpu/drm/i915/display/intel_pfit.c +++ b/drivers/gpu/drm/i915/display/intel_pfit.c @@ -569,9 +569,9 @@ void ilk_pfit_enable(const struct intel_crtc_state *crtc_state) if (!crtc_state->pch_pfit.enabled) return; - /* Force use of hard-coded filter coefficients - * as some pre-programmed values are broken, - * e.g. x201. + /* + * Force use of hard-coded filter coefficients as some pre-programmed + * values are broken, e.g. x201. */ if (IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) intel_de_write_fw(dev_priv, PF_CTL(pipe), PF_ENABLE | @@ -591,8 +591,10 @@ void ilk_pfit_disable(const struct intel_crtc_state *old_crtc_state) struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); enum pipe pipe = crtc->pipe; - /* To avoid upsetting the power well on haswell only disable the pfit if - * it's in use. The hw state code will make sure we get this right. */ + /* + * To avoid upsetting the power well on haswell only disable the pfit if + * it's in use. The hw state code will make sure we get this right. + */ if (!old_crtc_state->pch_pfit.enabled) return; @@ -657,8 +659,10 @@ void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state) intel_de_write(display, PFIT_CONTROL(display), crtc_state->gmch_pfit.control); - /* Border color in case we don't scale up to the full screen. Black by - * default, change to something else for debugging. */ + /* + * Border color in case we don't scale up to the full screen. Black by + * default, change to something else for debugging. + */ intel_de_write(display, BCLRPAT(display, crtc->pipe), 0); } -- 2.25.1