cpuidle: teo: Rename two local variables in teo_select()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 30 Jul 2021 14:38:52 +0000 (16:38 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 3 Aug 2021 13:18:57 +0000 (15:18 +0200)
Rename two local variables in teo_select() so that their names better
reflect their purpose.

No functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/governors/teo.c

index 8c59050..d9262db 100644 (file)
@@ -382,8 +382,8 @@ static int teo_select(struct cpuidle_driver *drv, struct cpuidle_device *dev,
        alt_intercepts = 2 * idx_intercept_sum > cpu_data->total - idx_hit_sum;
        alt_recent = idx_recent_sum > NR_RECENT / 2;
        if (alt_recent || alt_intercepts) {
-               s64 last_enabled_span_ns = duration_ns;
-               int last_enabled_idx = idx;
+               s64 first_suitable_span_ns = duration_ns;
+               int first_suitable_idx = idx;
 
                /*
                 * Look for the deepest idle state whose target residency had
@@ -419,8 +419,8 @@ static int teo_select(struct cpuidle_driver *drv, struct cpuidle_device *dev,
                                         * disabled, so take the first enabled
                                         * deeper state with suitable time span.
                                         */
-                                       idx = last_enabled_idx;
-                                       duration_ns = last_enabled_span_ns;
+                                       idx = first_suitable_idx;
+                                       duration_ns = first_suitable_span_ns;
                                }
                                break;
                        }
@@ -434,14 +434,14 @@ static int teo_select(struct cpuidle_driver *drv, struct cpuidle_device *dev,
                                 * alternative candidate state has been found,
                                 * it may still turn out to be a better choice.
                                 */
-                               if (last_enabled_idx != idx)
+                               if (first_suitable_idx != idx)
                                        continue;
 
                                break;
                        }
 
-                       last_enabled_span_ns = span_ns;
-                       last_enabled_idx = i;
+                       first_suitable_span_ns = span_ns;
+                       first_suitable_idx = i;
                }
        }