summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorSean Paul <seanpaul@chromium.org>2019-06-12 11:00:34 -0400
committerSean Paul <seanpaul@chromium.org>2019-06-12 11:19:47 -0400
commit09cc560951dbcc74c7f9419f7cf703b57472b7a2 (patch)
tree1df0d6165e8f7a1a482d7bd98c36beae00509fb2 /include/drm
parent5740671e596bdc3986a5391997de194300970201 (diff)
drm: Tweak drm_encoder_helper_funcs.enable kerneldoc
I copied the kerneldoc for encoder_funcs.atomic_enable from encoder_funcs.enable in a recent patch [1]. Sam rightly pointed out in the review that "for symmetry with" text is awkward [2]. So here's a patch to fix up the source of the awkward language. [1] https://patchwork.freedesktop.org/patch/msgid/20190611160844.257498-2-sean@poorly.run [2] https://patchwork.freedesktop.org/patch/msgid/20190611185352.GA16305@ravnborg.org Suggested-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Sean Paul <seanpaul@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/20190612150038.194843-1-sean@poorly.run
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_modeset_helper_vtables.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/drm/drm_modeset_helper_vtables.h b/include/drm/drm_modeset_helper_vtables.h
index f9c94c2a1364..df80131bb10f 100644
--- a/include/drm/drm_modeset_helper_vtables.h
+++ b/include/drm/drm_modeset_helper_vtables.h
@@ -719,11 +719,11 @@ struct drm_encoder_helper_funcs {
719 * hooks and call them from CRTC's callback by looping over all encoders 719 * hooks and call them from CRTC's callback by looping over all encoders
720 * connected to it using for_each_encoder_on_crtc(). 720 * connected to it using for_each_encoder_on_crtc().
721 * 721 *
722 * This hook is used only by atomic helpers, for symmetry with @disable. 722 * This hook is only used by atomic helpers, it is the opposite of
723 * Atomic drivers don't need to implement it if there's no need to 723 * @disable. Atomic drivers don't need to implement it if there's no
724 * enable anything at the encoder level. To ensure that runtime PM handling 724 * need to enable anything at the encoder level. To ensure that
725 * (using either DPMS or the new "ACTIVE" property) works 725 * runtime PM handling (using either DPMS or the new "ACTIVE" property)
726 * @enable must be the inverse of @disable for atomic drivers. 726 * works @enable must be the inverse of @disable for atomic drivers.
727 */ 727 */
728 void (*enable)(struct drm_encoder *encoder); 728 void (*enable)(struct drm_encoder *encoder);
729 729