Commit c6cf387e authored by Ayan Kumar Halder's avatar Ayan Kumar Halder Committed by Liviu Dudau

drm/mali-dp: Rectify the width and height passed to rotmem_required()

The width and height needs to be swapped
Signed-off-by: default avatarAyan Kumar halder <ayan.halder@arm.com>
Reviewed-by: default avatarBrian Starkey <brian.starkey@arm.com>
Reviewed-by: default avatarAlexandru Gheorghe <alexandru-cosmin.gheorghe@arm.com>
Acked-by: default avatarLiviu Dudau <liviu.dudau@arm.com>
[rebased on top of v4.18-rc1]
Signed-off-by: default avatarLiviu Dudau <liviu.dudau@arm.com>
parent ad7fda2e
...@@ -236,8 +236,8 @@ static int malidp_de_plane_check(struct drm_plane *plane, ...@@ -236,8 +236,8 @@ static int malidp_de_plane_check(struct drm_plane *plane,
if (state->rotation & MALIDP_ROTATED_MASK) { if (state->rotation & MALIDP_ROTATED_MASK) {
int val; int val;
val = mp->hwdev->hw->rotmem_required(mp->hwdev, state->crtc_h, val = mp->hwdev->hw->rotmem_required(mp->hwdev, state->crtc_w,
state->crtc_w, state->crtc_h,
fb->format->format); fb->format->format);
if (val < 0) if (val < 0)
return val; return val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment