aboutsummaryrefslogtreecommitdiff
path: root/arch/x86
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-03-20 08:30:07 +1300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-03-25 11:07:21 +0100
commit1404914ddd959d43138ed08544da8c816e0fa66d (patch)
treeb16c1133be8dc71420e609a836c88f53a36f7c8c /arch/x86
parent90f2b5abb5d980e5df5311f78f062340a69302bb (diff)
downloadu-boot-1404914ddd959d43138ed08544da8c816e0fa66d.zip
u-boot-1404914ddd959d43138ed08544da8c816e0fa66d.tar.gz
u-boot-1404914ddd959d43138ed08544da8c816e0fa66d.tar.bz2
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 <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/cpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/cpu.h
index 3346012..073f80b 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);