diff options
author | Peter Rosin <peda@axentia.se> | 2019-01-10 15:10:39 +0000 |
---|---|---|
committer | Boris Brezillon <bbrezillon@kernel.org> | 2019-01-27 09:19:20 +0100 |
commit | d06fe137b567cb4c3e09ef3fa672a8c25305ef98 (patch) | |
tree | 74031773e5c75b25d76e8efc294fe56c2bfb77e7 /drivers/gpu | |
parent | 8cdb00a5e95af8564feba9aa67e02d9908e94ac2 (diff) | |
download | linux-d06fe137b567cb4c3e09ef3fa672a8c25305ef98.tar.bz2 |
drm/atmel-hlcdc: do not swap w/h of the crtc when a plane is rotated
The destination crtc rectangle is independent of source plane rotation.
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Boris Brezillon <bbrezillon@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190110151020.30468-3-peda@axentia.se
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c index 8b42bff7636d..ed6326f85a73 100644 --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c @@ -643,9 +643,6 @@ static int atmel_hlcdc_plane_atomic_check(struct drm_plane *p, * Swap width and size in case of 90 or 270 degrees rotation */ if (drm_rotation_90_or_270(state->base.rotation)) { - tmp = state->crtc_w; - state->crtc_w = state->crtc_h; - state->crtc_h = tmp; tmp = state->src_w; state->src_w = state->src_h; state->src_h = tmp; |