From: Simon Glass Date: Sun, 19 Mar 2023 19:30:07 +0000 (+1300) Subject: x86: Add return-value comment to cpu_jump_to_64bit() X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~175^2~23^2~10 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=b2249f2aaa330a0e4c6550ce4d17fc138235c71f;p=uboot.git x86: Add return-value comment to cpu_jump_to_64bit() This does not mention what it returns. Add the missing documentation. Signed-off-by: Simon Glass --- diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/cpu.h index 3346012d33..073f80b07f 100644 --- a/arch/x86/include/asm/cpu.h +++ b/arch/x86/include/asm/cpu.h @@ -262,6 +262,7 @@ void cpu_call32(ulong code_seg32, ulong target, ulong table); * * @setup_base: Pointer to the setup.bin information for the kernel * @target: Pointer to the start of the kernel image + * Return: -EFAULT if the kernel returned; otherwise does not return */ int cpu_jump_to_64bit(ulong setup_base, ulong target);