[patch 42/54] buildid: fix kernel-doc notation
From: Andrew Morton <akpm@linux-foundation.org>
Date: 2021-07-08 01:09:49
Also in:
mm-commits
From: Stephen Boyd <redacted> Subject: buildid: fix kernel-doc notation Kernel doc should use "Return:" instead of "Returns" to properly reflect the return values. Link: https://lkml.kernel.org/r/20210511003845.2429846-13-swboyd@chromium.org Signed-off-by: Stephen Boyd <redacted> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Alexei Starovoitov <ast@kernel.org> Cc: Jessica Yu <jeyu@kernel.org> Cc: Evan Green <redacted> Cc: Hsin-Yi Wang <redacted> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Baoquan He <redacted> Cc: Borislav Petkov <bp@alien8.de> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Dave Young <redacted> Cc: Ingo Molnar <mingo@redhat.com> Cc: Konstantin Khlebnikov <redacted> Cc: Matthew Wilcox <willy@infradead.org> Cc: Petr Mladek <pmladek@suse.com> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Sasha Levin <sashal@kernel.org> Cc: Sergey Senozhatsky <redacted> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Thomas Gleixner <redacted> Cc: Vivek Goyal <vgoyal@redhat.com> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- lib/buildid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
--- a/lib/buildid.c~buildid-fix-kernel-doc-notation
+++ a/lib/buildid.c@@ -121,7 +121,7 @@ static int get_build_id_64(const void *p * @build_id: buffer to store build id, at least BUILD_ID_SIZE long * @size: returns actual build id size in case of success * - * Returns 0 on success, otherwise error (< 0). + * Return: 0 on success, -EINVAL otherwise */ int build_id_parse(struct vm_area_struct *vma, unsigned char *build_id, __u32 *size)
_