mirror of https://gitee.com/openkylin/linux.git
drm/i915: Kill level 0 wm hack for VLV/CHV
We now compute the watermarks correctly, so just return an error if we can't support the configuration. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/20170302171508.1666-15-ville.syrjala@linux.intel.com
This commit is contained in:
parent
1a10ae6ba8
commit
7373728ddf
|
@ -1186,10 +1186,6 @@ static bool vlv_plane_wm_compute(struct intel_crtc_state *crtc_state,
|
|||
int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
|
||||
int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
|
||||
|
||||
/* FIXME just bail */
|
||||
if (WARN_ON(level == 0 && wm > max_wm))
|
||||
wm = max_wm;
|
||||
|
||||
if (wm > max_wm)
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue