Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c6cda29 authored by Imre Deak's avatar Imre Deak Committed by Daniel Vetter
Browse files

drm/i915/gen9: fix typo when setting up the crtc scaler



This typo lead to the crtc scaler getting enabled incorrectly and an
evantual state checker mismatch about the scaler_id.

Signed-off-by: default avatarImre Deak <imre.deak@intel.com>
Reviewed-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 0160f055
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4352,7 +4352,7 @@ int skl_update_scaler_crtc(struct intel_crtc_state *state, int force_detach)
	return skl_update_scaler(state, force_detach, SKL_CRTC_INDEX,
		&state->scaler_state.scaler_id, DRM_ROTATE_0,
		state->pipe_src_w, state->pipe_src_h,
		adjusted_mode->hdisplay, adjusted_mode->hdisplay);
		adjusted_mode->hdisplay, adjusted_mode->vdisplay);
}

/**