drm/i915: Use plane->state->fb instead of plane->fb in intel_plane_restore()
plane->fb is not as reliable as plane->state->fb so let's convert intel_plane_restore() over the the new way of thinking as well. Cc: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
3749f46370
commit
6e721fb1ee
|
@ -1361,10 +1361,10 @@ out_unlock:
|
|||
|
||||
int intel_plane_restore(struct drm_plane *plane)
|
||||
{
|
||||
if (!plane->crtc || !plane->fb)
|
||||
if (!plane->crtc || !plane->state->fb)
|
||||
return 0;
|
||||
|
||||
return plane->funcs->update_plane(plane, plane->crtc, plane->fb,
|
||||
return plane->funcs->update_plane(plane, plane->crtc, plane->state->fb,
|
||||
plane->state->crtc_x, plane->state->crtc_y,
|
||||
plane->state->crtc_w, plane->state->crtc_h,
|
||||
plane->state->src_x, plane->state->src_y,
|
||||
|
|
Loading…
Reference in New Issue