Commit 7adbd209 authored by Archit Taneja's avatar Archit Taneja

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: default avatarEric Engestrom <eric.engestrom@imgtec.com>
Tested-by: default avatarEric Engestrom <eric.engestrom@imgtec.com>
Signed-off-by: default avatarArchit Taneja <architt@codeaurora.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20170222084741.8485-1-architt@codeaurora.org
parent 8c47c086
...@@ -267,7 +267,7 @@ struct drm_mode_config_funcs { ...@@ -267,7 +267,7 @@ struct drm_mode_config_funcs {
* passed-in &drm_atomic_state. This hook is called when the caller * passed-in &drm_atomic_state. This hook is called when the caller
* encountered a &drm_modeset_lock deadlock and needs to drop all * encountered a &drm_modeset_lock deadlock and needs to drop all
* already acquired locks as part of the deadlock avoidance dance * 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 * Any duplicated state must be invalidated since a concurrent atomic
* update might change it, and the drm atomic interfaces always apply * update might change it, and the drm atomic interfaces always apply
...@@ -285,8 +285,8 @@ struct drm_mode_config_funcs { ...@@ -285,8 +285,8 @@ struct drm_mode_config_funcs {
* itself. Note that the core first calls drm_atomic_state_clear() to * itself. Note that the core first calls drm_atomic_state_clear() to
* avoid code duplicate between the clear and free hooks. * avoid code duplicate between the clear and free hooks.
* *
* Drivers that implement this must call drm_atomic_state_default_free() * Drivers that implement this must call
* to release common resources. * drm_atomic_state_default_release() to release common resources.
*/ */
void (*atomic_state_free)(struct drm_atomic_state *state); void (*atomic_state_free)(struct drm_atomic_state *state);
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment