diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2022-01-13 04:36:22 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2022-09-21 11:05:43 +0300 |
commit | 27ef523a6653b35270296114dc50a9f630d896a9 (patch) | |
tree | 6d7353d2de66235d45741f80fd5b7a525f77f78d /fs/ubifs | |
parent | 521a547ced6477c54b4b0cc206000406c221b4d6 (diff) | |
download | linux-27ef523a6653b35270296114dc50a9f630d896a9.tar.xz |
ubifs: Fix ubifs_check_dir_empty() kernel-doc comment
Fix function name in fs/ubifs/dir.c kernel-doc comment
to remove warning found by running scripts/kernel-doc,
which is caused by using 'make W=1'.
fs/ubifs/dir.c:883: warning: expecting prototype for check_dir_empty().
Prototype was for ubifs_check_dir_empty() instead
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c index 86151889548e..7306f88b2c7e 100644 --- a/fs/ubifs/dir.c +++ b/fs/ubifs/dir.c @@ -872,7 +872,7 @@ out_fname: } /** - * check_dir_empty - check if a directory is empty or not. + * ubifs_check_dir_empty - check if a directory is empty or not. * @dir: VFS inode object of the directory to check * * This function checks if directory @dir is empty. Returns zero if the |