Commit 5d374d96 authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter

drm/i915/skl: Reduce the indentation level in skl_write_wm_values()

We can reduce the indentation level by continuing early.
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent afb024aa
...@@ -3485,9 +3485,10 @@ static void skl_write_wm_values(struct drm_i915_private *dev_priv, ...@@ -3485,9 +3485,10 @@ static void skl_write_wm_values(struct drm_i915_private *dev_priv,
int i, level, max_level = ilk_wm_max_level(dev); int i, level, max_level = ilk_wm_max_level(dev);
enum pipe pipe = crtc->pipe; enum pipe pipe = crtc->pipe;
if (new->dirty[pipe]) { if (!new->dirty[pipe])
I915_WRITE(PIPE_WM_LINETIME(pipe), continue;
new->wm_linetime[pipe]);
I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]);
for (level = 0; level <= max_level; level++) { for (level = 0; level <= max_level; level++) {
for (i = 0; i < intel_num_planes(crtc); i++) for (i = 0; i < intel_num_planes(crtc); i++)
...@@ -3509,7 +3510,6 @@ static void skl_write_wm_values(struct drm_i915_private *dev_priv, ...@@ -3509,7 +3510,6 @@ static void skl_write_wm_values(struct drm_i915_private *dev_priv,
skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
&new->ddb.cursor[pipe]); &new->ddb.cursor[pipe]);
} }
}
} }
static bool skl_update_pipe_wm(struct drm_crtc *crtc, static bool skl_update_pipe_wm(struct drm_crtc *crtc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment