diff options
author | Tim Harvey <tharvey@gateworks.com> | 2019-02-04 13:10:48 -0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-02-15 22:01:15 +0100 |
commit | ff3568fcfe22504cbf61711350c49876a7b5dd7c (patch) | |
tree | 8a0734d4697b2a9fd4c8f00d8fcd04451343e227 /board/gateworks | |
parent | 9dde167edb16a0d3c8e0db4c872e82dc41f24234 (diff) | |
download | u-boot-ff3568fcfe22504cbf61711350c49876a7b5dd7c.zip u-boot-ff3568fcfe22504cbf61711350c49876a7b5dd7c.tar.gz u-boot-ff3568fcfe22504cbf61711350c49876a7b5dd7c.tar.bz2 |
imx: ventana: do not iomux UART1
The only UART that is garunteed on Ventana boards is UART2 (serial-console).
Remove UART1 pinmux as that it is not consistent across all Ventana boards
and U-Boot doesn't need it.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks')
-rw-r--r-- | board/gateworks/gw_ventana/common.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/board/gateworks/gw_ventana/common.c b/board/gateworks/gw_ventana/common.c index 41fe8dc..f577bdb 100644 --- a/board/gateworks/gw_ventana/common.c +++ b/board/gateworks/gw_ventana/common.c @@ -18,12 +18,6 @@ #include "common.h" -/* UART1: Function varies per baseboard */ -static iomux_v3_cfg_t const uart1_pads[] = { - IOMUX_PADS(PAD_SD3_DAT6__UART1_RX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL)), - IOMUX_PADS(PAD_SD3_DAT7__UART1_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL)), -}; - /* UART2: Serial Console */ static iomux_v3_cfg_t const uart2_pads[] = { IOMUX_PADS(PAD_SD4_DAT7__UART2_TX_DATA | MUX_PAD_CTRL(UART_PAD_CTRL)), @@ -32,7 +26,6 @@ static iomux_v3_cfg_t const uart2_pads[] = { void setup_iomux_uart(void) { - SETUP_IOMUX_PADS(uart1_pads); SETUP_IOMUX_PADS(uart2_pads); } |