From 6611d3f21ca0b037b1b7f47056c3b2a96809dd14 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 15 Jan 2020 12:58:59 -0500 Subject: [PATCH] Restored board_f.c but left testdram commented --- common/board_f.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/board_f.c b/common/board_f.c index 2f23068..bc42718 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -943,19 +943,19 @@ static init_fnc_t init_sequence_f[] = { /* TODO: unify all these dram functions? */ #if defined(CONFIG_ARM) || defined(CONFIG_X86) || defined(CONFIG_NDS32) || \ defined(CONFIG_MICROBLAZE) || defined(CONFIG_AVR32) - //dram_init, /* configure available RAM banks */ + dram_init, /* configure available RAM banks */ #endif #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K) - //init_func_ram, + init_func_ram, #endif #ifdef CONFIG_POST post_init_f, #endif - //INIT_FUNC_WATCHDOG_RESET + INIT_FUNC_WATCHDOG_RESET #if defined(CONFIG_SYS_DRAM_TEST) //testdram, #endif /* CONFIG_SYS_DRAM_TEST */ - INIT_FUNC_WATCHDOG_RESET + //INIT_FUNC_WATCHDOG_RESET #ifdef CONFIG_POST init_post,