diff options
author | Adam Ford <aford173@gmail.com> | 2025-03-18 18:38:38 -0500 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-03-19 13:17:21 -0300 |
commit | 43f01332714940d3430fbd283d54d848d9934b07 (patch) | |
tree | 11eb05fd5eb2fcebf1da028402336c707bad455a | |
parent | 7947c8be0e1c930456d7d9a0376485a9ccf7cf09 (diff) |
board: beacon: imx8mp: 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: Adam Ford <aford173@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | board/beacon/imx8mp/spl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/board/beacon/imx8mp/spl.c b/board/beacon/imx8mp/spl.c index 30d577f7e0e..6b357d90a3f 100644 --- a/board/beacon/imx8mp/spl.c +++ b/board/beacon/imx8mp/spl.c @@ -112,8 +112,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); |