diff options
| author | Tom Rini <[email protected]> | 2026-03-25 13:00:41 -0600 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2026-04-02 09:09:51 -0300 |
| commit | 4efab3ab4feedc5756e27fd567a5a8c8225901a8 (patch) | |
| tree | 3f3110b704a671d666c5d120c7557f5bbc28fd13 | |
| parent | 775431adbd53257e565aca161270e4d225b5897b (diff) | |
mx6sxsabreauto: 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]>
Reviewed-by: Peng Fan <[email protected]>
| -rw-r--r-- | arch/arm/mach-imx/mx6/Kconfig | 1 | ||||
| -rw-r--r-- | board/nxp/mx6sxsabreauto/mx6sxsabreauto.c | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/mach-imx/mx6/Kconfig b/arch/arm/mach-imx/mx6/Kconfig index f64bebfc14b..1eda90ad9b7 100644 --- a/arch/arm/mach-imx/mx6/Kconfig +++ b/arch/arm/mach-imx/mx6/Kconfig @@ -419,7 +419,6 @@ config TARGET_MX6SXSABRESD config TARGET_MX6SXSABREAUTO bool "mx6sxsabreauto" depends on MX6SX - select BOARD_EARLY_INIT_F select BOARD_LATE_INIT select DM select DM_THERMAL diff --git a/board/nxp/mx6sxsabreauto/mx6sxsabreauto.c b/board/nxp/mx6sxsabreauto/mx6sxsabreauto.c index d80cfd4ab27..ac91da3f4f6 100644 --- a/board/nxp/mx6sxsabreauto/mx6sxsabreauto.c +++ b/board/nxp/mx6sxsabreauto/mx6sxsabreauto.c @@ -199,11 +199,6 @@ int board_ehci_hcd_init(int port) } #endif -int board_early_init_f(void) -{ - return 0; -} - #ifdef CONFIG_FSL_QSPI int board_qspi_init(void) { |
