X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=common%2Fboard_f.c;h=79531377a78b6d4b304c3f9bff7590b2ae0fa20f;hb=0365ffcc0bd6335afb0c866423f3fe401b28ffaa;hp=3a4b32c29dc1dbccb6f181297ce0686b4dcf990b;hpb=28c4dae114c9b94b2a1111d81d4da716e9fc2cba;p=people%2Fms%2Fu-boot.git diff --git a/common/board_f.c b/common/board_f.c index 3a4b32c29d..79531377a7 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -807,6 +807,12 @@ static int initf_dm(void) return 0; } +/* Architecture-specific memory reservation */ +__weak int reserve_arch(void) +{ + return 0; +} + static init_fnc_t init_sequence_f[] = { #ifdef CONFIG_SANDBOX setup_ram_buf, @@ -888,7 +894,7 @@ static init_fnc_t init_sequence_f[] = { prt_mpc5xxx_clks, #endif /* CONFIG_MPC5xxx */ #if defined(CONFIG_DISPLAY_BOARDINFO) - checkboard, /* display board info */ + show_board_info, #endif INIT_FUNC_WATCHDOG_INIT #if defined(CONFIG_MISC_INIT_F) @@ -970,6 +976,7 @@ static init_fnc_t init_sequence_f[] = { setup_machine, reserve_global_data, reserve_fdt, + reserve_arch, reserve_stacks, setup_dram_config, show_dram_config,