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:
a23cb3b
)
drm/msm: args->fence should be args->flags
author
Jordan Crouse
<jcrouse@codeaurora.org>
Thu, 27 Jul 2017 16:42:34 +0000
(10:42 -0600)
committer
Rob Clark
<robdclark@gmail.com>
Tue, 1 Aug 2017 23:11:28 +0000
(19:11 -0400)
Fix a typo in msm_ioctl_gem_submit - check args->flags for the
MSM_SUBMIT_NO_IMPLICIT flag instead of args->fence.
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/msm_gem_submit.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/msm/msm_gem_submit.c
b/drivers/gpu/drm/msm/msm_gem_submit.c
index 8095658e8cb49414ca95e020a0991d729b2458f2..8a75c0bd8a78b1481e30fdab63f2d14bfc64536d 100644
(file)
--- a/
drivers/gpu/drm/msm/msm_gem_submit.c
+++ b/
drivers/gpu/drm/msm/msm_gem_submit.c
@@
-451,7
+451,7
@@
int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
if (ret)
goto out;
- if (!(args->f
ence
& MSM_SUBMIT_NO_IMPLICIT)) {
+ if (!(args->f
lags
& MSM_SUBMIT_NO_IMPLICIT)) {
ret = submit_fence_sync(submit);
if (ret)
goto out;