Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/atomic: doc: remove old comment about nonblocking commits

We now support nonblocking commits on drm_atomic_helper_commit()
so the comment is not valid anymore.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1480946626-30917-1-git-send-email-gustavo@padovan.org

-3
-3
drivers/gpu/drm/drm_atomic_helper.c
··· 1234 1234 * function implements nonblocking commits, using 1235 1235 * drm_atomic_helper_setup_commit() and related functions. 1236 1236 * 1237 - * Note that right now this function does not support nonblocking commits, hence 1238 - * driver writers must implement their own version for now. 1239 - * 1240 1237 * Committing the actual hardware state is done through the 1241 1238 * ->atomic_commit_tail() callback of the &drm_mode_config_helper_funcs vtable, 1242 1239 * or it's default implementation drm_atomic_helper_commit_tail().