diff options
Diffstat (limited to 'roms/u-boot/arch/x86/cpu/tangier/tangier.c')
-rw-r--r-- | roms/u-boot/arch/x86/cpu/tangier/tangier.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/cpu/tangier/tangier.c b/roms/u-boot/arch/x86/cpu/tangier/tangier.c new file mode 100644 index 000000000..1e2f6cc8b --- /dev/null +++ b/roms/u-boot/arch/x86/cpu/tangier/tangier.c @@ -0,0 +1,27 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) 2017 Intel Corporation + */ + +#include <common.h> +#include <cpu_func.h> +#include <init.h> +#include <asm/u-boot-x86.h> + +/* + * Miscellaneous platform dependent initializations + */ +int arch_cpu_init(void) +{ + return x86_cpu_init_f(); +} + +int checkcpu(void) +{ + return 0; +} + +int print_cpuinfo(void) +{ + return default_print_cpuinfo(); +} |