diff options
| author | Peng Fan <[email protected]> | 2026-02-08 22:34:41 +0800 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2026-02-28 15:31:49 -0300 |
| commit | c6c1b7a54455c7f8eec8eec2a438f75d1d25f6bf (patch) | |
| tree | a484d9cbb3f88a7dafb4aa06b9962ea5c3401fc3 | |
| parent | 6830f1ec971bce4ffc008ae9a72bc8642756117f (diff) | |
nxp: imx8m[m,p]_evk: Drop init_uart_clk
Both the two boards have clk framework enabled, so rely on serial driver
calling clk_enable to enable the uart clk.
Signed-off-by: Peng Fan <[email protected]>
| -rw-r--r-- | board/nxp/imx8mm_evk/spl.c | 2 | ||||
| -rw-r--r-- | board/nxp/imx8mp_evk/spl.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/board/nxp/imx8mm_evk/spl.c b/board/nxp/imx8mm_evk/spl.c index 5c588046ff4..50bae3a2bcc 100644 --- a/board/nxp/imx8mm_evk/spl.c +++ b/board/nxp/imx8mm_evk/spl.c @@ -106,8 +106,6 @@ void board_init_f(ulong dummy) arch_cpu_init(); - init_uart_clk(1); - timer_init(); /* Clear the BSS. */ diff --git a/board/nxp/imx8mp_evk/spl.c b/board/nxp/imx8mp_evk/spl.c index 5b4aac42830..27cd82e745a 100644 --- a/board/nxp/imx8mp_evk/spl.c +++ b/board/nxp/imx8mp_evk/spl.c @@ -102,8 +102,6 @@ void board_init_f(ulong dummy) arch_cpu_init(); - init_uart_clk(1); - ret = spl_early_init(); if (ret) { debug("spl_init() failed: %d\n", ret); |
