diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2023-09-12 09:08:38 +0300 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-09-19 23:21:33 +0300 |
commit | 36ee98b555c00c5b360d9cd63dce490f4dac2290 (patch) | |
tree | 4bf43d9c47d899ac26e933d4638520a2a784036e /lib | |
parent | c80da1fb85bf50decf0cc9803fbf9b0b926268f8 (diff) | |
download | linux-36ee98b555c00c5b360d9cd63dce490f4dac2290.tar.xz |
argv_split: fix kernel-doc warnings
Use proper kernel-doc notation to prevent build warnings:
lib/argv_split.c:36: warning: Function parameter or member 'argv' not described in 'argv_free'
lib/argv_split.c:61: warning: No description found for return value of 'argv_split'
Link: https://lkml.kernel.org/r/20230912060838.3794-1-rdunlap@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/argv_split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/argv_split.c b/lib/argv_split.c index 1a19a0a93dc1..e28db8e3b58c 100644 --- a/lib/argv_split.c +++ b/lib/argv_split.c @@ -28,7 +28,7 @@ static int count_argc(const char *str) /** * argv_free - free an argv - * @argv - the argument vector to be freed + * @argv: the argument vector to be freed * * Frees an argv and the strings it points to. */ @@ -46,7 +46,7 @@ EXPORT_SYMBOL(argv_free); * @str: the string to be split * @argcp: returned argument count * - * Returns an array of pointers to strings which are split out from + * Returns: an array of pointers to strings which are split out from * @str. This is performed by strictly splitting on white-space; no * quote processing is performed. Multiple whitespace characters are * considered to be a single argument separator. The returned array |