Skip to content

Commit

Permalink
[ARM] pcm038: Fix pins for UART3
Browse files Browse the repository at this point in the history
The UART3 had a copy-paste bug. instead of claiming rxd, txd, rts and
cts pins, cts and rts were claimed twice

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Sascha Hauer committed Mar 13, 2009
1 parent fb4416a commit 9a51157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-mx2/pcm038.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ static int uart_mxc_port1_exit(struct platform_device *pdev)
return 0;
}

static int mxc_uart2_pins[] = { PE10_PF_UART3_CTS,
static int mxc_uart2_pins[] = { PE8_PF_UART3_TXD,
PE9_PF_UART3_RXD,
PE10_PF_UART3_CTS,
PE9_PF_UART3_RXD };
PE11_PF_UART3_RTS };

static int uart_mxc_port2_init(struct platform_device *pdev)
{
Expand Down

0 comments on commit 9a51157

Please sign in to comment.