diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-27 10:51:25 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2020-10-28 11:41:15 -0600 |
commit | 7c128a249c7e7697b5bd4b0ca27c1f4fe5c64f6a (patch) | |
tree | 514af87acde3f5bd2c5d681ed6fa99bf0afc23f5 | |
parent | 1166eb3d5268e8445ffb9b7bac432dfb293bce1d (diff) | |
download | linux-stable-7c128a249c7e7697b5bd4b0ca27c1f4fe5c64f6a.tar.gz linux-stable-7c128a249c7e7697b5bd4b0ca27c1f4fe5c64f6a.tar.bz2 linux-stable-7c128a249c7e7697b5bd4b0ca27c1f4fe5c64f6a.zip |
docs: fs: api-summary.rst: get rid of kernel-doc include
The direct-io.c file used to have just two exported symbols:
- dio_end_io()
- __blockdev_direct_IO()
The first one was removed by changeset
c33fe275b530 ("fs: remove no longer used dio_end_io()")
And the last one is used on most places indirectly, via
the inline macro blockdev_direct_IO() provided by fs.h.
Yet, neither the macro or the function have kernel-doc
markups.
So, drop the inclusion of fs/direct-io.c at the docs.
Fixes: c33fe275b530 ("fs: remove no longer used dio_end_io()")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/d0a9fffedca102633c168adaf157f34288a4ea67.1603791716.git.mchehab+huawei@kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/filesystems/api-summary.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Documentation/filesystems/api-summary.rst b/Documentation/filesystems/api-summary.rst index bbb0c1c0e5cf..a94f17d9b836 100644 --- a/Documentation/filesystems/api-summary.rst +++ b/Documentation/filesystems/api-summary.rst @@ -86,9 +86,6 @@ Other Functions .. kernel-doc:: fs/dax.c :export: -.. kernel-doc:: fs/direct-io.c - :export: - .. kernel-doc:: fs/libfs.c :export: |