Rename the enable_dpkgc variable to make it more clear what it
represents which is that if we are in fixed refresh rate or not.

Signed-off-by: Suraj Kandpal <[email protected]>
---
 drivers/gpu/drm/i915/display/skl_watermark.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c 
b/drivers/gpu/drm/i915/display/skl_watermark.c
index a97e90ac643f..3fa463159b0b 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -2848,7 +2848,7 @@ static int skl_wm_add_affected_planes(struct 
intel_atomic_state *state,
  * Program PKG_C_LATENCY Added Wake Time = 0
  */
 static void
-skl_program_dpkgc_latency(struct drm_i915_private *i915, bool enable_dpkgc)
+skl_program_dpkgc_latency(struct drm_i915_private *i915, bool 
fixed_refresh_rate)
 {
        u32 max_latency = LNL_PKG_C_LATENCY_MASK;
        u32 clear = 0, val = 0;
@@ -2857,7 +2857,7 @@ skl_program_dpkgc_latency(struct drm_i915_private *i915, 
bool enable_dpkgc)
        if (DISPLAY_VER(i915) < 20)
                return;
 
-       if (enable_dpkgc) {
+       if (fixed_refresh_rate) {
                max_latency = skl_watermark_max_latency(i915, 1);
                if (max_latency == 0)
                        max_latency = LNL_PKG_C_LATENCY_MASK;
@@ -2878,7 +2878,7 @@ skl_compute_wm(struct intel_atomic_state *state)
        struct intel_crtc *crtc;
        struct intel_crtc_state __maybe_unused *new_crtc_state;
        int ret, i;
-       bool enable_dpkgc = false;
+       bool fixed_refresh_rate = false;
 
        for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
                ret = skl_build_pipe_wm(state, crtc);
@@ -2907,10 +2907,10 @@ skl_compute_wm(struct intel_atomic_state *state)
                if ((new_crtc_state->vrr.vmin == new_crtc_state->vrr.vmax &&
                     new_crtc_state->vrr.vmin == new_crtc_state->vrr.flipline) 
||
                    !new_crtc_state->vrr.enable)
-                       enable_dpkgc = true;
+                       fixed_refresh_rate = true;
        }
 
-       skl_program_dpkgc_latency(to_i915(state->base.dev), enable_dpkgc);
+       skl_program_dpkgc_latency(to_i915(state->base.dev), fixed_refresh_rate);
 
        skl_print_wm_changes(state);
 
-- 
2.34.1

Reply via email to