From: Lukas Bulwahn Date: Mon, 31 Oct 2022 09:48:35 +0000 (+0100) Subject: x86/boot: Repair kernel-doc for boot_kstrtoul() X-Git-Tag: v6.2-rc1~192^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d632bf6ff1f6f733e1de9c5331fd643f4ecbe483;p=thirdparty%2Fkernel%2Flinux.git x86/boot: Repair kernel-doc for boot_kstrtoul() Adjust the kernel-doc comment to have the proper function name: boot_kstrtoul(). [ bp: Massage commit message. ] Signed-off-by: Lukas Bulwahn Signed-off-by: Borislav Petkov Link: https://lore.kernel.org/r/20221031094835.15923-1-lukas.bulwahn@gmail.com --- diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c index 8a3fff9128bb4..1c8541ae3b3ac 100644 --- a/arch/x86/boot/string.c +++ b/arch/x86/boot/string.c @@ -350,7 +350,7 @@ static int _kstrtoul(const char *s, unsigned int base, unsigned long *res) } /** - * kstrtoul - convert a string to an unsigned long + * boot_kstrtoul - convert a string to an unsigned long * @s: The start of the string. The string must be null-terminated, and may also * include a single newline before its terminating null. The first character * may also be a plus sign, but not a minus sign.