mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/i915: Fix maxfifo watermark calc on vlv cursor planes
A typo resulted in the watermarks for cursor planes not being calculated correctly. Fixed the typo. Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Thomas Daniel <thomas.daniel@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
f9e3dc786a
commit
5a37ed0a9e
1 changed files with 1 additions and 1 deletions
|
@ -1135,7 +1135,7 @@ static void vlv_compute_wm(struct intel_crtc *crtc)
|
|||
case DRM_PLANE_TYPE_CURSOR:
|
||||
for (level = 0; level < wm_state->num_levels; level++)
|
||||
wm_state->sr[level].cursor =
|
||||
wm_state->sr[level].cursor;
|
||||
wm_state->wm[level].cursor;
|
||||
break;
|
||||
case DRM_PLANE_TYPE_PRIMARY:
|
||||
for (level = 0; level < wm_state->num_levels; level++)
|
||||
|
|
Loading…
Add table
Reference in a new issue