diff options
| author | Hugo Villeneuve <[email protected]> | 2026-02-06 15:55:27 -0500 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2026-02-06 20:32:36 -0300 |
| commit | ced337fccb82acf8b2488a1e12d717e6540f8829 (patch) | |
| tree | 1a549873be49ecb4ae69a795222730bf9c69bc14 | |
| parent | 56246896a3e4787b0da0a7c59c11229c5c1431f3 (diff) | |
board: imx8mn_var_som: let clock system enable UART clock
Now that the UART driver can enable the required clocks, remove
the hard-coded clock enable.
Signed-off-by: Hugo Villeneuve <[email protected]>
| -rw-r--r-- | board/variscite/imx8mn_var_som/spl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/board/variscite/imx8mn_var_som/spl.c b/board/variscite/imx8mn_var_som/spl.c index 01a63c69641..e86bd37544f 100644 --- a/board/variscite/imx8mn_var_som/spl.c +++ b/board/variscite/imx8mn_var_som/spl.c @@ -41,13 +41,6 @@ void spl_board_init(void) puts("Failed to find clock node. Check device tree\n"); } -int board_early_init_f(void) -{ - init_uart_clk(3); - - return 0; -} - void board_init_f(ulong dummy) { int ret; @@ -57,8 +50,6 @@ void board_init_f(ulong dummy) arch_cpu_init(); - board_early_init_f(); - timer_init(); ret = spl_init(); |
