aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2018-10-12 09:34:41 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-11 16:13:12 +0100
commit7d0250ed8e69fb6a66caecf60b8753a21224cc1a (patch)
tree91f4c228632c083b620ea77fcf215764f43172ed
parentdrm: Unexport drm_crtc_force_disable (diff)
downloadlinux-dev-7d0250ed8e69fb6a66caecf60b8753a21224cc1a.tar.xz
linux-dev-7d0250ed8e69fb6a66caecf60b8753a21224cc1a.zip
drm/atomic: Add missing () to function ref in kerneldoc
Pure drive-by while reading code&docs. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Reviewed-by: Lyude Paul <lyude@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20181012073441.21774-1-daniel.vetter@ffwll.ch
-rw-r--r--include/drm/drm_atomic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_atomic.h b/include/drm/drm_atomic.h
index cac4a1b6b0e8..811b4a92568f 100644
--- a/include/drm/drm_atomic.h
+++ b/include/drm/drm_atomic.h
@@ -139,9 +139,9 @@ struct drm_crtc_commit {
/**
* @abort_completion:
*
- * A flag that's set after drm_atomic_helper_setup_commit takes a second
- * reference for the completion of $drm_crtc_state.event. It's used by
- * the free code to remove the second reference if commit fails.
+ * A flag that's set after drm_atomic_helper_setup_commit() takes a
+ * second reference for the completion of $drm_crtc_state.event. It's
+ * used by the free code to remove the second reference if commit fails.
*/
bool abort_completion;
};