diff options
Diffstat (limited to 'roms/u-boot/arch/x86/lib/fsp2/fsp_common.c')
-rw-r--r-- | roms/u-boot/arch/x86/lib/fsp2/fsp_common.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/lib/fsp2/fsp_common.c b/roms/u-boot/arch/x86/lib/fsp2/fsp_common.c new file mode 100644 index 000000000..f69456e43 --- /dev/null +++ b/roms/u-boot/arch/x86/lib/fsp2/fsp_common.c @@ -0,0 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright 2019 Google LLC + * Written by Simon Glass <sjg@chromium.org> + */ + +#include <common.h> +#include <init.h> + +int arch_fsp_init(void) +{ + return 0; +} |