diff options
author | Ovidiu Panait <ovidiu.panait@windriver.com> | 2020-07-24 14:12:20 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-06 14:26:35 -0400 |
commit | 1532885c457c594c554b6124ce6dafbe731759c6 (patch) | |
tree | f383feeb0d1e9d15a53b4ceff5cd81b15ad80fe0 /common | |
parent | f1e504a3eaa59923a294685050b423fa4d7e49e7 (diff) | |
download | u-boot-1532885c457c594c554b6124ce6dafbe731759c6.tar.gz u-boot-1532885c457c594c554b6124ce6dafbe731759c6.tar.bz2 u-boot-1532885c457c594c554b6124ce6dafbe731759c6.zip |
board_f: Remove setup_board_part1
Now that all arch specific code was converted to setup_bdinfo, we can
remove setup_board_part1.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/common/board_f.c b/common/board_f.c index e670155417..79532f4365 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -618,13 +618,6 @@ int setup_bdinfo(void) return arch_setup_bdinfo(); } -#if defined(CONFIG_MIPS) || defined(CONFIG_SH) -static int setup_board_part1(void) -{ - return 0; -} -#endif - #ifdef CONFIG_POST static int init_post(void) { @@ -945,11 +938,8 @@ static const init_fnc_t init_sequence_f[] = { reserve_stacks, dram_init_banksize, show_dram_config, - setup_bdinfo, -#if defined(CONFIG_MIPS) || defined(CONFIG_SH) - setup_board_part1, -#endif INIT_FUNC_WATCHDOG_RESET + setup_bdinfo, display_new_sp, #ifdef CONFIG_OF_BOARD_FIXUP fix_fdt, |