drm/i915/pfit: fix comment style for moved comments
authorJani Nikula <jani.nikula@intel.com>
Wed, 26 Feb 2025 10:01:09 +0000 (12:01 +0200)
committerJani Nikula <jani.nikula@intel.com>
Thu, 27 Feb 2025 18:49:04 +0000 (20:49 +0200)
Adhere to coding style.

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

index 0a7609020c172875c44c7cd267ebc8972c3911c7..5e4a6ef2ff8d4426def2b6bea34f1bf9f2ba9c92 100644 (file)
@@ -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);
 }