diff options
author | Lukas Bulwahn <lukas.bulwahn@gmail.com> | 2022-10-31 10:48:35 +0100 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2022-11-02 10:20:02 +0100 |
commit | d632bf6ff1f6f733e1de9c5331fd643f4ecbe483 (patch) | |
tree | dfe47109f88260e4ed29157a4fdb86a481440c50 /arch/x86/boot/string.c | |
parent | 0ba5df84d06363b6112d8c5e538582e557b41ad2 (diff) |
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 <lukas.bulwahn@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/20221031094835.15923-1-lukas.bulwahn@gmail.com
Diffstat (limited to 'arch/x86/boot/string.c')
-rw-r--r-- | arch/x86/boot/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c index 8a3fff9128bb..1c8541ae3b3a 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. |