From: Ville Syrjälä <ville.syrj...@linux.intel.com>

Passing the level insted of "is_lp" seems easier. The end result is the
same though.

Signed-off-by: Ville Syrjälä <ville.syrj...@linux.intel.com>
---
 drivers/gpu/drm/i915/intel_pm.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 6b820c4..f178e26 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -2185,7 +2185,7 @@ enum hsw_data_buf_partitioning {
 /* For both WM_PIPE and WM_LP. */
 static uint32_t ilk_compute_pri_wm(struct hsw_pipe_wm_parameters *params,
                                   uint32_t mem_value,
-                                  bool is_lp)
+                                  int level)
 {
        uint32_t method1, method2;
 
@@ -2197,7 +2197,7 @@ static uint32_t ilk_compute_pri_wm(struct 
hsw_pipe_wm_parameters *params,
                                 params->pri_bytes_per_pixel,
                                 mem_value);
 
-       if (!is_lp)
+       if (level == 0)
                return method1;
 
        method2 = ilk_wm_method2(params->pixel_rate,
@@ -2266,7 +2266,7 @@ static bool hsw_compute_lp_wm(uint32_t mem_value, struct 
hsw_wm_maximums *max,
        for (pipe = PIPE_A; pipe <= PIPE_C; pipe++) {
                struct hsw_pipe_wm_parameters *p = &params[pipe];
 
-               pri_val[pipe] = ilk_compute_pri_wm(p, mem_value, true);
+               pri_val[pipe] = ilk_compute_pri_wm(p, mem_value, 1);
                spr_val[pipe] = ilk_compute_spr_wm(p, mem_value);
                cur_val[pipe] = ilk_compute_cur_wm(p, mem_value);
                fbc_val[pipe] = ilk_compute_fbc_wm(p, pri_val[pipe], mem_value);
@@ -2296,7 +2296,7 @@ static uint32_t hsw_compute_wm_pipe(struct 
drm_i915_private *dev_priv,
 {
        uint32_t pri_val, cur_val, spr_val;
 
-       pri_val = ilk_compute_pri_wm(params, mem_value, false);
+       pri_val = ilk_compute_pri_wm(params, mem_value, 0);
        spr_val = ilk_compute_spr_wm(params, mem_value);
        cur_val = ilk_compute_cur_wm(params, mem_value);
 
-- 
1.8.1.5

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to