]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915: Flatten sanitize_wm_latency() a bit
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 19 Sep 2025 19:29:57 +0000 (22:29 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 23 Sep 2025 15:11:37 +0000 (18:11 +0300)
Move the inner loop out from the outer loop in
sanitize_wm_latency() to flatten things a bit.
Easier to read flat code.

v2: Move the inner loop out completely (Luca)

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

index 1acb9285bd054b926285f8ac3bba368e6f04cb62..d83772c6ea9a38f95f3caf780e69ed60c0380172 100644 (file)
@@ -3228,14 +3228,12 @@ static void sanitize_wm_latency(struct intel_display *display)
         * of the punit to satisfy this requirement.
         */
        for (level = 1; level < num_levels; level++) {
-               if (wm[level] == 0) {
-                       int i;
-
-                       for (i = level + 1; i < num_levels; i++)
-                               wm[i] = 0;
-                       return;
-               }
+               if (wm[level] == 0)
+                       break;
        }
+
+       for (level = level + 1; level < num_levels; level++)
+               wm[level] = 0;
 }
 
 static void