drm/i915/scaler: s/excdeed/exceed/
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 19 Dec 2024 13:08:26 +0000 (15:08 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 9 Jan 2025 17:33:31 +0000 (19:33 +0200)
Fix typo s/excdeed/exceed/

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

index f6d76ef1a8543b28f7ec0c264a8ef95d029c538f..79739357162c8e7941995491f298d48b4c43d63e 100644 (file)
@@ -64,7 +64,7 @@ static u16 skl_scaler_calc_phase(int sub, int scale, bool chroma_cosited)
        /*
         * Hardware initial phase limited to [-0.5:1.5].
         * Since the max hardware scale factor is 3.0, we
-        * should never actually excdeed 1.0 here.
+        * should never actually exceed 1.0 here.
         */
        WARN_ON(phase < -0x8000 || phase > 0x18000);