From: Ville Syrjälä Date: Wed, 4 Sep 2013 15:25:26 +0000 (+0300) Subject: drm/i915: Use pipe config in sprite code X-Git-Tag: v3.13-rc1~69^2~115^2~37 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ba44f7207376e62de8863bc76281141c23103e7b;p=linux-block.git drm/i915: Use pipe config in sprite code Rather than dig up the pipe source size from crtc->mode, use intel_crtc->config.requested_mode. Signed-off-by: Ville Syrjälä Reviewed-by: Damien Lespiau Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/i915/intel_sprite.c b/drivers/gpu/drm/i915/intel_sprite.c index d9c7a667553a..ae0e686e6e55 100644 --- a/drivers/gpu/drm/i915/intel_sprite.c +++ b/drivers/gpu/drm/i915/intel_sprite.c @@ -652,8 +652,8 @@ intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, .y2 = crtc_y + crtc_h, }; const struct drm_rect clip = { - .x2 = crtc->mode.hdisplay, - .y2 = crtc->mode.vdisplay, + .x2 = intel_crtc->config.requested_mode.hdisplay, + .y2 = intel_crtc->config.requested_mode.vdisplay, }; intel_fb = to_intel_framebuffer(fb);