summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Schenker <philippe.schenker@toradex.com>2020-08-20 09:11:28 +0200
committerPhilippe Schenker <philippe.schenker@toradex.com>2020-08-20 14:04:47 +0200
commite97de56e5d337364df16e5b058e8fc035dfa3f12 (patch)
treeace431f50deabc9dae87ab242f1e17e54f0d3b8f
parent0e5d619d764e1ef13c55a0c35594bd387fde9346 (diff)
board: colibri-imx8x: change comment for uart initialization
Signed-off-by: Philippe Schenker <philippe.schenker@toradex.com>
-rw-r--r--board/toradex/colibri-imx8x/colibri-imx8x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/toradex/colibri-imx8x/colibri-imx8x.c b/board/toradex/colibri-imx8x/colibri-imx8x.c
index 3c04b82b46..5aa60378b5 100644
--- a/board/toradex/colibri-imx8x/colibri-imx8x.c
+++ b/board/toradex/colibri-imx8x/colibri-imx8x.c
@@ -58,13 +58,13 @@ int board_early_init_f(void)
/*
* This works around that having only UART3 up the baudrate is 1.2M
- * instead of 115.2k. Set UART0 clock root to 80 MHz
+ * instead of 115.2k. Set UART0 clock root to 80 MHz and enable it
*/
ret = sc_pm_setup_uart(SC_R_UART_0, rate);
if (ret)
return ret;
- /* Set UART0 clock root to 80 MHz */
+ /* Set UART0 clock root to 80 MHz and enable it */
ret = sc_pm_setup_uart(SC_R_UART_3, rate);
if (ret)
return ret;