diff options
author | Daniel Kurtz <djkurtz@chromium.org> | 2016-08-03 22:59:56 -0400 |
---|---|---|
committer | Sean Paul <seanpaul@chromium.org> | 2016-08-08 14:20:02 -0400 |
commit | 9c350d834f08407d8470b3c09bbc34e42d261362 (patch) | |
tree | 3183901d1ecb03fea43b755761893ea5dc8d4af2 | |
parent | f176cbf6f9407d363e72ba9bc2f7cd40853b4388 (diff) |
drm/mediatek: plane: Use FB's format's cpp to compute x offset
Use the framebuffer's format to compute its cpp, and use it when
calculating the address shift value.
Signed-off-by: Bibby Hsieh <bibby.hsieh@mediatek.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1470279597-60453-7-git-send-email-bibby.hsieh@mediatek.com
-rw-r--r-- | drivers/gpu/drm/mediatek/mtk_drm_plane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_drm_plane.c b/drivers/gpu/drm/mediatek/mtk_drm_plane.c index b3ddb20b2e58..c461a232cbf5 100644 --- a/drivers/gpu/drm/mediatek/mtk_drm_plane.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_plane.c | |||
@@ -135,7 +135,7 @@ static void mtk_plane_atomic_update(struct drm_plane *plane, | |||
135 | pitch = fb->pitches[0]; | 135 | pitch = fb->pitches[0]; |
136 | format = fb->pixel_format; | 136 | format = fb->pixel_format; |
137 | 137 | ||
138 | addr += (plane->state->src.x1 >> 16) * 4; | 138 | addr += (plane->state->src.x1 >> 16) * drm_format_plane_cpp(format, 0); |
139 | addr += (plane->state->src.y1 >> 16) * pitch; | 139 | addr += (plane->state->src.y1 >> 16) * pitch; |
140 | 140 | ||
141 | state->pending.enable = true; | 141 | state->pending.enable = true; |