diff options
author | Simon Glass <sjg@chromium.org> | 2019-04-25 21:58:47 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-05-08 13:02:12 +0800 |
commit | 62be5dd8858e4b9c1aea635619be707ec45d4a88 (patch) | |
tree | 4b07bd09a0023931fff4d9b4efb603b263fab707 /arch/x86 | |
parent | 7c2ca877fee42085ad1b6ff24d9d10d91dcd9332 (diff) | |
download | u-boot-62be5dd8858e4b9c1aea635619be707ec45d4a88.tar.gz |
x86: Add a handoff header file
Add an arch-specific handoff header so that we can use the HANDOFF feature
on x86 devices.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/handoff.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/include/asm/handoff.h b/arch/x86/include/asm/handoff.h new file mode 100644 index 0000000000..4d18d59efe --- /dev/null +++ b/arch/x86/include/asm/handoff.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Architecture-specific SPL handoff information for x86 + * + * Copyright 2018 Google, Inc + * Written by Simon Glass <sjg@chromium.org> + */ + +#ifndef __x86_asm_handoff_h +#define __x86_asm_handoff_h + +struct arch_spl_handoff { +}; + +#endif |