diff options
author | Paul Kocialkowski | 2024-07-29 17:30:11 +0200 |
---|---|---|
committer | Paul Kocialkowski | 2024-07-29 21:00:26 +0200 |
commit | 81d5fd2eb34f8bdd34aa9a4785bfe6a075d03619 (patch) | |
tree | a3d0f03499c3dd3dd066b30c40d1dfda5eefb57f /configs/am335x_shc_defconfig | |
parent | dccc67dfa5b8ac598d5bc8e881e11e4f5f5ca349 (diff) |
am33xx: Use regular spl_board_init instead of am33xx_spl_board_init
The am33xx_spl_board_init function was introduced as a way to add
board-specific SPL init for AM33xx devices since the spl_board_init
function was already used for SoC-specific init.
Now that the SoC-specific SPL init was moved to spl_soc_init, we can
use spl_board_init for this purpose and get rid of
am33xx_spl_board_init.
Rename the function in board files and enable the related config
option for concerned boards.
Signed-off-by: Paul Kocialkowski <paulk@sys-base.io>
Diffstat (limited to 'configs/am335x_shc_defconfig')
-rw-r--r-- | configs/am335x_shc_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/am335x_shc_defconfig b/configs/am335x_shc_defconfig index f2cf35c4c33..8fb6e1a5a9b 100644 --- a/configs/am335x_shc_defconfig +++ b/configs/am335x_shc_defconfig @@ -31,6 +31,7 @@ CONFIG_BOOTCOMMAND="if mmc dev 1; mmc rescan; then run emmc_setup; else echo ERR CONFIG_DEFAULT_FDT_FILE="am335x-shc" CONFIG_SYS_PBSIZE=1049 CONFIG_SYS_CONSOLE_INFO_QUIET=y +CONFIG_SPL_BOARD_INIT=y CONFIG_SPL_SYS_MALLOC_SIMPLE=y CONFIG_SPL_SYS_MALLOC=y CONFIG_SPL_SYS_MALLOC_SIZE=0x800000 |