diff options
author | Wang Hai <wanghai38@huawei.com> | 2020-09-14 16:56:54 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2020-09-18 00:06:53 +0300 |
commit | b30e2238b7ff0c3cbe27f7bf024d73e17842f5fc (patch) | |
tree | 39695434d01f8d0d526009a99a53b3daab7e78cd /fs/ubifs | |
parent | f279e5a491fd96c1347c3268dacc771dc796778e (diff) | |
download | linux-b30e2238b7ff0c3cbe27f7bf024d73e17842f5fc.tar.xz |
ubifs: Fix some kernel-doc warnings in tnc.c
Fixes the following W=1 kernel build warning(s):
fs/ubifs/tnc.c:3479: warning: Excess function parameter 'inum' description in 'dbg_check_inode_size'
fs/ubifs/tnc.c:366: warning: Excess function parameter 'node' description in 'lnc_free'
@inum in 'dbg_check_inode_size' should be @inode, fix it.
@node in 'lnc_free' is not in use, Remove it.
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/tnc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ubifs/tnc.c b/fs/ubifs/tnc.c index f609f6cdde70..de21625804a9 100644 --- a/fs/ubifs/tnc.c +++ b/fs/ubifs/tnc.c @@ -360,7 +360,6 @@ static int lnc_add_directly(struct ubifs_info *c, struct ubifs_zbranch *zbr, /** * lnc_free - remove a leaf node from the leaf node cache. * @zbr: zbranch of leaf node - * @node: leaf node */ static void lnc_free(struct ubifs_zbranch *zbr) { @@ -3466,7 +3465,7 @@ out_unlock: /** * dbg_check_inode_size - check if inode size is correct. * @c: UBIFS file-system description object - * @inum: inode number + * @inode: inode to check * @size: inode size * * This function makes sure that the inode size (@size) is correct and it does |