drm/atomic: Rename drm_atomic_async_commit to nonblocking.

Another step in renaming async to nonblocking for atomic commit.

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1461679905-30177-3-git-send-email-maarten.lankhorst@linux.intel.com
This commit is contained in:
Maarten Lankhorst
2016-04-26 16:11:35 +02:00
committed by Daniel Vetter
parent 286dbb8d5d
commit b837ba0ad9
3 changed files with 9 additions and 9 deletions

View File

@@ -2371,11 +2371,11 @@ retry:
goto fail;
}
ret = drm_atomic_async_commit(state);
ret = drm_atomic_nonblocking_commit(state);
if (ret != 0)
goto fail;
/* Driver takes ownership of state on successful async commit. */
/* Driver takes ownership of state on successful commit. */
return 0;
fail:
if (ret == -EDEADLK)