diff options
author | Tom Rini <trini@konsulko.com> | 2016-09-21 14:50:18 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-21 14:50:18 -0400 |
commit | 423620b9d47a704124f9fd624b4de4ed56c600d6 (patch) | |
tree | 78fbffeb39460482565bd75fd32ad4ae1a9cd135 /common | |
parent | f85fad024f208ceedb3ce0bb1819936e62a0983e (diff) | |
parent | 31d36f748c52b22833aa946f6c406cc8fb2f1908 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-mips
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/board_f.c b/common/board_f.c index da381dbd93b..9ef998f9ed2 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -290,6 +290,11 @@ __weak int arch_cpu_init(void) return 0; } +__weak int mach_cpu_init(void) +{ + return 0; +} + #ifdef CONFIG_SANDBOX static int setup_ram_buf(void) { @@ -860,6 +865,7 @@ static init_fnc_t init_sequence_f[] = { x86_fsp_init, #endif arch_cpu_init, /* basic arch cpu dependent setup */ + mach_cpu_init, /* SoC/machine dependent CPU setup */ initf_dm, arch_cpu_init_dm, mark_bootstage, /* need timer, go after init dm */ |