projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef64cf9
)
drm/msm: fix inconsequential typo
author
Rob Clark
<robdclark@gmail.com>
Fri, 13 Dec 2013 14:11:01 +0000
(09:11 -0500)
committer
Rob Clark
<robdclark@gmail.com>
Wed, 5 Feb 2014 16:13:51 +0000
(11:13 -0500)
Small typo I noticed in the mdp4_plane code.. no consequence because
PIPE_SRC_XY and PIPE_DST_XY have same register layout.
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c
b/drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c
index 2406027200ec597e5d6a10674e82db82f122adff..1e893dd13859817ae33e199b99f0810c59c49732 100644
(file)
--- a/
drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c
+++ b/
drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c
@@
-170,8
+170,8
@@
int mdp4_plane_mode_set(struct drm_plane *plane,
MDP4_PIPE_DST_SIZE_HEIGHT(crtc_h));
mdp4_write(mdp4_kms, REG_MDP4_PIPE_DST_XY(pipe),
- MDP4_PIPE_
SRC
_XY_X(crtc_x) |
- MDP4_PIPE_
SRC
_XY_Y(crtc_y));
+ MDP4_PIPE_
DST
_XY_X(crtc_x) |
+ MDP4_PIPE_
DST
_XY_Y(crtc_y));
mdp4_plane_set_scanout(plane, fb);