From: Simon Glass Date: Fri, 26 Apr 2019 03:58:47 +0000 (-0600) Subject: x86: Add a handoff header file X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=62be5dd8858e4b9c1aea635619be707ec45d4a88;p=u-boot.git 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 Reviewed-by: Bin Meng --- 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 + */ + +#ifndef __x86_asm_handoff_h +#define __x86_asm_handoff_h + +struct arch_spl_handoff { +}; + +#endif