diff options
author | Tom Rini <trini@konsulko.com> | 2018-06-18 12:59:46 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-18 12:59:46 -0400 |
commit | 378b29cbc6607ad8246b1381bc74ec62bdb19105 (patch) | |
tree | 18232d99d78af022062bdbe36f8253e41d017d4a /arch/x86/cpu/efi/app.c | |
parent | 103c45fb0daab924308046454b4aaad4a09237c4 (diff) | |
parent | 0102023966558075e52758bd22ffd8f96b093a7e (diff) |
Merge git://git.denx.de/u-boot-x86
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 0000000000..ba7c02bd7e --- /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 x86_cpu_init_f(); +} + +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; +} |