diff options
| author | Simon Glass <sjg@chromium.org> | 2023-08-21 21:17:00 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2023-08-31 13:16:55 -0400 |
| commit | 6a32bfae61652f9dae621410ca6e094f374a1f11 (patch) | |
| tree | 2f215f3dd3e7ff54c50dca579b00a5ddc550250e /common/board_f.c | |
| parent | 13a7db9ab1791736c69ce49be85db5f4c32dc581 (diff) | |
freescale: Drop call to init_func_vid() in the init sequence
Use the misc_init_f event instead, which is designed for this purpose.
All boards with CONFIG_VID already enable CONFIG_EVENT.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_f.c')
| -rw-r--r-- | common/board_f.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/common/board_f.c b/common/board_f.c index 46008bac659..aef395b1354 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -280,13 +280,6 @@ static int init_func_i2c(void) } #endif -#if defined(CONFIG_VID) -__weak int init_func_vid(void) -{ - return 0; -} -#endif - static int setup_mon_len(void) { #if defined(__ARM__) || defined(__MICROBLAZE__) @@ -897,9 +890,6 @@ static const init_fnc_t init_sequence_f[] = { #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) init_func_i2c, #endif -#if defined(CONFIG_VID) && !defined(CONFIG_SPL) - init_func_vid, -#endif announce_dram_init, dram_init, /* configure available RAM banks */ #ifdef CONFIG_POST |
