mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
07387d1769
commit
8b37c7694f
4 changed files with 6 additions and 8 deletions
|
@ -20,18 +20,17 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
/*
|
||||
* Miscellaneous platform dependent initializations
|
||||
*/
|
||||
int cpu_init_f(void)
|
||||
int arch_cpu_init(void)
|
||||
{
|
||||
int ret = get_coreboot_info(&lib_sysinfo);
|
||||
if (ret != 0)
|
||||
if (ret != 0) {
|
||||
printf("Failed to parse coreboot tables.\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
timestamp_init();
|
||||
|
||||
return ret;
|
||||
return x86_cpu_init_f();
|
||||
}
|
||||
|
||||
int board_early_init_f(void)
|
||||
|
|
|
@ -130,7 +130,6 @@ int x86_cpu_init_f(void)
|
|||
|
||||
return 0;
|
||||
}
|
||||
int cpu_init_f(void) __attribute__((weak, alias("x86_cpu_init_f")));
|
||||
|
||||
int x86_cpu_init_r(void)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -818,7 +818,6 @@ static init_fnc_t init_sequence_f[] = {
|
|||
#endif
|
||||
arch_cpu_init, /* basic arch cpu dependent setup */
|
||||
#ifdef CONFIG_X86
|
||||
cpu_init_f, /* TODO(sjg@chromium.org): remove */
|
||||
# ifdef CONFIG_OF_CONTROL
|
||||
find_fdt, /* TODO(sjg@chromium.org): remove */
|
||||
# endif
|
||||
|
|
Loading…
Reference in a new issue