diff options
author | Patrice Chotard <patrice.chotard@foss.st.com> | 2021-02-24 13:38:20 +0100 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2021-03-12 10:57:10 +0100 |
commit | 729fa17f065ff0cb652bee55b08d8d83b594ff3e (patch) | |
tree | d03f4221bf837e2a136d76df7e183beeacdb749b /board/st/stm32f429-discovery/stm32f429-discovery.c | |
parent | 92baaada1a9b9a2876e383d4985f07fefa4d513d (diff) | |
download | u-boot-729fa17f065ff0cb652bee55b08d8d83b594ff3e.tar.gz |
board: st: Remove board_early_init_f and board_late_init callbacks for stm32 boards
Remove board_early_init_f() and board_late_init() callbacks for stm32
boards as the corresponding flags (CONFIG_BOARD_LATE_INIT and
CONFIG_BOARD_EARLY_INIT_R) are now disabled.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'board/st/stm32f429-discovery/stm32f429-discovery.c')
-rw-r--r-- | board/st/stm32f429-discovery/stm32f429-discovery.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/st/stm32f429-discovery/stm32f429-discovery.c b/board/st/stm32f429-discovery/stm32f429-discovery.c index 9d8fc9f5a2..46fcf907fc 100644 --- a/board/st/stm32f429-discovery/stm32f429-discovery.c +++ b/board/st/stm32f429-discovery/stm32f429-discovery.c @@ -51,11 +51,6 @@ u32 get_board_rev(void) return 0; } -int board_early_init_f(void) -{ - return 0; -} - int board_init(void) { gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100; |