diff options
author | Archit Taneja <architt@codeaurora.org> | 2017-02-22 11:47:41 +0300 |
---|---|---|
committer | Archit Taneja <architt@codeaurora.org> | 2017-02-27 06:17:38 +0300 |
commit | 7adbd209ce5a1b17754e2b73ec43aed392ee950c (patch) | |
tree | 6205d2597bbfa4a18cab1d640fb3e8c76f97341f /include/drm | |
parent | 8c47c0860b90094e3bdd05303a34884c8e3b6f77 (diff) | |
download | linux-7adbd209ce5a1b17754e2b73ec43aed392ee950c.tar.xz |
drm/doc: Fix up some kms function names
A couple of the kms functions didn't have the correct/newest names.
This prevented them to be identified as refs in the html doc.
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Tested-by: Eric Engestrom <eric.engestrom@imgtec.com>
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20170222084741.8485-1-architt@codeaurora.org
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_mode_config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h index 29f734a542c8..f220ee909bdb 100644 --- a/include/drm/drm_mode_config.h +++ b/include/drm/drm_mode_config.h @@ -267,7 +267,7 @@ struct drm_mode_config_funcs { * passed-in &drm_atomic_state. This hook is called when the caller * encountered a &drm_modeset_lock deadlock and needs to drop all * already acquired locks as part of the deadlock avoidance dance - * implemented in drm_modeset_lock_backoff(). + * implemented in drm_modeset_backoff(). * * Any duplicated state must be invalidated since a concurrent atomic * update might change it, and the drm atomic interfaces always apply @@ -285,8 +285,8 @@ struct drm_mode_config_funcs { * itself. Note that the core first calls drm_atomic_state_clear() to * avoid code duplicate between the clear and free hooks. * - * Drivers that implement this must call drm_atomic_state_default_free() - * to release common resources. + * Drivers that implement this must call + * drm_atomic_state_default_release() to release common resources. */ void (*atomic_state_free)(struct drm_atomic_state *state); }; |