diff options
| author | Randy Dunlap <rdunlap@infradead.org> | 2026-07-29 10:20:43 -0700 |
|---|---|---|
| committer | Richard Weinberger <richard@nod.at> | 2026-08-11 23:03:40 +0200 |
| commit | abd6591fb5cc1490ab2cf5d9ff513a6677fa57b2 (patch) | |
| tree | 31c49f59d6c3c684815cf8c625b05ef1395fe2fe | |
| parent | f06711486c12c1fbb3ea9c0c595ca244b111891f (diff) | |
| download | linux-abd6591fb5cc1490ab2cf5d9ff513a6677fa57b2.tar.gz linux-abd6591fb5cc1490ab2cf5d9ff513a6677fa57b2.zip | |
ubifs: key.h: use correct function parameter name
Use @hash as the function parameter name to prevent kernel-doc warnings:
Warning: fs/ubifs/key.h:42 function parameter 'hash' not described in 'key_mask_hash'
Warning: fs/ubifs/key.h:42 Excess function parameter 'val' description in 'key_mask_hash'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
| -rw-r--r-- | fs/ubifs/key.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/key.h b/fs/ubifs/key.h index 8142d9d6fe5d..71497c1b4753 100644 --- a/fs/ubifs/key.h +++ b/fs/ubifs/key.h @@ -33,7 +33,7 @@ /** * key_mask_hash - mask a valid hash value. - * @val: value to be masked + * @hash: value to be masked * * We use hash values as offset in directories, so values %0 and %1 are * reserved for "." and "..". %2 is reserved for "end of readdir" marker. This |
