summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_atomic_helper.c
diff options
context:
space:
mode:
authorGustavo Padovan <gustavo.padovan@collabora.com>2017-04-27 11:35:06 -0300
committerGustavo Padovan <gustavo.padovan@collabora.com>2017-05-02 22:58:13 -0300
commit4259037260d323fe967dbdb2270568de11576353 (patch)
tree0ded8402d2e051876fc6e22894bdf92d66999eaa /drivers/gpu/drm/drm_atomic_helper.c
parentaa5bfa405c87a82d0b0374bb47c8e05d0fb69c04 (diff)
downloadlinux-stable-4259037260d323fe967dbdb2270568de11576353.tar.gz
linux-stable-4259037260d323fe967dbdb2270568de11576353.tar.bz2
linux-stable-4259037260d323fe967dbdb2270568de11576353.zip
drm/atomic: fix doc to use new name for commit types
Use "non-blocking" and "blocking" instead of old names. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20170427143506.32650-1-gustavo@padovan.org
Diffstat (limited to 'drivers/gpu/drm/drm_atomic_helper.c')
-rw-r--r--drivers/gpu/drm/drm_atomic_helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index cfeda5f2883b..5a3c9c0a1613 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -1070,8 +1070,8 @@ EXPORT_SYMBOL(drm_atomic_helper_commit_modeset_enables);
*
* Note that @pre_swap is needed since the point where we block for fences moves
* around depending upon whether an atomic commit is blocking or
- * non-blocking. For async commit all waiting needs to happen after
- * drm_atomic_helper_swap_state() is called, but for synchronous commits we want
+ * non-blocking. For non-blocking commit all waiting needs to happen after
+ * drm_atomic_helper_swap_state() is called, but for blocking commits we want
* to wait **before** we do anything that can't be easily rolled back. That is
* before we call drm_atomic_helper_swap_state().
*