summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-25 13:00:38 -0600
committerFabio Estevam <[email protected]>2026-04-02 09:09:16 -0300
commit6e209fc6e74661147a7466f4b775018fed221d09 (patch)
tree015afba75034dd89fdfbaad0f6a3e685179f08a5
parenta88d6525f6e61c999bcd1a189e9c69aa52f569ba (diff)
imx93_frdm: Drop unnecessary BOARD_EARLY_INIT_F usage
This platform enables CONFIG_BOARD_EARLY_INIT_F and then has a do-nothing board_early_init_f function. Change to not enabling the option and so not needing an empty function. Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--board/nxp/imx93_frdm/imx93_frdm.c5
-rw-r--r--board/nxp/imx93_frdm/spl.c2
-rw-r--r--configs/imx93_frdm_defconfig1
3 files changed, 0 insertions, 8 deletions
diff --git a/board/nxp/imx93_frdm/imx93_frdm.c b/board/nxp/imx93_frdm/imx93_frdm.c
index fb78a9bd036..e187de74a72 100644
--- a/board/nxp/imx93_frdm/imx93_frdm.c
+++ b/board/nxp/imx93_frdm/imx93_frdm.c
@@ -90,11 +90,6 @@ static int clear_pd_alert(void)
return 0;
}
-int board_early_init_f(void)
-{
- return 0;
-}
-
int board_init(void)
{
return 0;
diff --git a/board/nxp/imx93_frdm/spl.c b/board/nxp/imx93_frdm/spl.c
index 006c752d071..068091ba0e9 100644
--- a/board/nxp/imx93_frdm/spl.c
+++ b/board/nxp/imx93_frdm/spl.c
@@ -156,8 +156,6 @@ void board_init_f(ulong dummy)
arch_cpu_init();
- board_early_init_f();
-
spl_early_init();
preloader_console_init();
diff --git a/configs/imx93_frdm_defconfig b/configs/imx93_frdm_defconfig
index c35ebc3b492..adcf2125c73 100644
--- a/configs/imx93_frdm_defconfig
+++ b/configs/imx93_frdm_defconfig
@@ -35,7 +35,6 @@ CONFIG_BOOTCOMMAND="bootflow scan -lb; run bsp_bootcmd"
CONFIG_DEFAULT_FDT_FILE="imx93-11x11-frdm.dtb"
CONFIG_SYS_CBSIZE=2048
CONFIG_SYS_PBSIZE=2074
-CONFIG_BOARD_EARLY_INIT_F=y
CONFIG_BOARD_LATE_INIT=y
CONFIG_SPL_MAX_SIZE=0x26000
CONFIG_SPL_BOARD_INIT=y