diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-06 13:20:06 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:24:09 +0100 |
commit | 8b37c7694f1eace82626d00fbfb85311ebf0d220 (patch) | |
tree | bd9bf3ee79b2ace78a1b7c86fec752cefb393826 /arch/x86/include | |
parent | 07387d1769c7cc29ff2402117148477263c4c5ce (diff) | |
download | u-boot-imx-8b37c7694f1eace82626d00fbfb85311ebf0d220.zip u-boot-imx-8b37c7694f1eace82626d00fbfb85311ebf0d220.tar.gz u-boot-imx-8b37c7694f1eace82626d00fbfb85311ebf0d220.tar.bz2 |
x86: Use the standard arch_cpu_init() function
Instead of an x86-specific cpu_init_f() function, use the normal U-Boot one
for this purpose. Also remove a useless/misleading comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/u-boot-x86.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/u-boot-x86.h b/arch/x86/include/asm/u-boot-x86.h index 89618c7..fdb8a6c 100644 --- a/arch/x86/include/asm/u-boot-x86.h +++ b/arch/x86/include/asm/u-boot-x86.h @@ -9,6 +9,7 @@ #define _U_BOOT_I386_H_ 1 /* cpu/.../cpu.c */ +int arch_cpu_init(void); int x86_cpu_init_r(void); int cpu_init_r(void); int x86_cpu_init_f(void); |