diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2018-10-12 09:34:41 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2019-01-11 16:13:12 +0100 |
commit | 7d0250ed8e69fb6a66caecf60b8753a21224cc1a (patch) | |
tree | 91f4c228632c083b620ea77fcf215764f43172ed /include/drm/drm_atomic.h | |
parent | 1e9080ac21d182913df404d634a7c847af5e35be (diff) | |
download | linux-7d0250ed8e69fb6a66caecf60b8753a21224cc1a.tar.bz2 |
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
Diffstat (limited to 'include/drm/drm_atomic.h')
-rw-r--r-- | include/drm/drm_atomic.h | 6 |
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; }; |