diff options
author | Jonathan Corbet <corbet@lwn.net> | 2017-07-17 23:42:39 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2017-07-24 01:06:36 +0300 |
commit | 23924e31037a08d89a9da25dbe5ac6c0233d86e4 (patch) | |
tree | 14b6eade9b03a28c75133b30067a86314eba9572 | |
parent | 5ee5432b045a7e0fb8b72c196ae3d7077c6111eb (diff) | |
download | linux-23924e31037a08d89a9da25dbe5ac6c0233d86e4.tar.xz |
docs: Use :internal: for include/drm/drm_syncobj.h
Documentation/gpu/drm-mm.rst includes from include/drm/drm_syncobj.h with
:export:, but this is a header file without export directives. That
results in this warning:
./include/drm/drm_syncobj.h:1: warning: no structured comments found
...and a failure to obtain the documentation from that file. Switch to
:internal: instead to make both problems go away.
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/gpu/drm-mm.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst index 9412798645c1..300898298bf6 100644 --- a/Documentation/gpu/drm-mm.rst +++ b/Documentation/gpu/drm-mm.rst @@ -492,7 +492,7 @@ DRM Sync Objects :doc: Overview .. kernel-doc:: include/drm/drm_syncobj.h - :export: + :internal: .. kernel-doc:: drivers/gpu/drm/drm_syncobj.c :export: |