summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/arm/malidp_planes.c
diff options
context:
space:
mode:
authorBrian Starkey <brian.starkey@arm.com>2016-12-07 13:20:28 +0000
committerLiviu Dudau <Liviu.Dudau@arm.com>2017-01-23 09:46:24 +0000
commit7916efe5b57505080b3cebf5bdb228b4eda008ea (patch)
treed34f1d69e4757da52fbf879762f895bfe4997b5e /drivers/gpu/drm/arm/malidp_planes.c
parentedabb3c4cd2d035bc93a3d67b25a304ea6217301 (diff)
downloadop-kernel-dev-7916efe5b57505080b3cebf5bdb228b4eda008ea.zip
op-kernel-dev-7916efe5b57505080b3cebf5bdb228b4eda008ea.tar.gz
drm: mali-dp: Fix transposed horizontal/vertical flip
The horizontal and vertical flip flags were the wrong way around, causing reflect-x to result in reflect-y being applied and vice-versa. Fix them. Fixes: ad49f8602fe8 ("drm/arm: Add support for Mali Display Processors") Signed-off-by: Brian Starkey <brian.starkey@arm.com> Signed-off-by: Liviu Dudau <Liviu.Dudau@arm.com>
Diffstat (limited to 'drivers/gpu/drm/arm/malidp_planes.c')
-rw-r--r--drivers/gpu/drm/arm/malidp_planes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/arm/malidp_planes.c b/drivers/gpu/drm/arm/malidp_planes.c
index 8c5ce361..629f634 100644
--- a/drivers/gpu/drm/arm/malidp_planes.c
+++ b/drivers/gpu/drm/arm/malidp_planes.c
@@ -221,9 +221,9 @@ static void malidp_de_plane_update(struct drm_plane *plane,
if (plane->state->rotation & DRM_ROTATE_MASK)
val = ilog2(plane->state->rotation & DRM_ROTATE_MASK) << LAYER_ROT_OFFSET;
if (plane->state->rotation & DRM_REFLECT_X)
- val |= LAYER_V_FLIP;
- if (plane->state->rotation & DRM_REFLECT_Y)
val |= LAYER_H_FLIP;
+ if (plane->state->rotation & DRM_REFLECT_Y)
+ val |= LAYER_V_FLIP;
/*
* always enable pixel alpha blending until we have a way to change
OpenPOWER on IntegriCloud