diff options
| author | Tom Rini <[email protected]> | 2026-03-25 13:00:45 -0600 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2026-04-02 09:10:23 -0300 |
| commit | 55ac1191b30a50ba0ae2ee1d8030676f5545c07f (patch) | |
| tree | b380438206bec70245283e244ec46f84a49649f9 | |
| parent | 91ba8ab13f01cc3405eccfed781ee35b305a08af (diff) | |
o4-imx6ull-nano: 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/out4/o4-imx6ull-nano/o4-imx6ull-nano.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/out4/o4-imx6ull-nano/o4-imx6ull-nano.c b/board/out4/o4-imx6ull-nano/o4-imx6ull-nano.c index 10469aecd0b..b55e92fb051 100644 --- a/board/out4/o4-imx6ull-nano/o4-imx6ull-nano.c +++ b/board/out4/o4-imx6ull-nano/o4-imx6ull-nano.c @@ -16,11 +16,6 @@ int dram_init(void) return 0; } -int board_early_init_f(void) -{ - return 0; -} - static int setup_fec_clock(void) { if (IS_ENABLED(CONFIG_FEC_MXC) && !IS_ENABLED(CONFIG_CLK_IMX6Q)) { |
