diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-06-12 08:36:24 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-06-17 21:16:04 +0800 |
commit | 3ebd892fda2d07f153a14cb30e60ae707e9e4208 (patch) | |
tree | 67979e62f6c0b91c951b53e82199e6e0adb62309 /arch/x86/cpu/efi/app.c | |
parent | d441ec829831068e29318a5b6774a36d31ae135a (diff) |
x86: Rename efi-x86 target to efi-x86_app
To avoid confusion, let's rename the efi-x86 target to efi-x86_app.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/efi/app.c')
-rw-r--r-- | arch/x86/cpu/efi/app.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/x86/cpu/efi/app.c b/arch/x86/cpu/efi/app.c new file mode 100644 index 00000000000..cda4fabe15a --- /dev/null +++ b/arch/x86/cpu/efi/app.c @@ -0,0 +1,32 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) 2015 Google, Inc + */ + +#include <common.h> +#include <fdtdec.h> +#include <netdev.h> + +int arch_cpu_init(void) +{ + return 0; +} + +int checkcpu(void) +{ + return 0; +} + +int print_cpuinfo(void) +{ + return default_print_cpuinfo(); +} + +void board_final_cleanup(void) +{ +} + +int misc_init_r(void) +{ + return 0; +} |