[ARM] pcm038: Fix pins for UART3
authorSascha Hauer <s.hauer@pengutronix.de>
Mon, 9 Feb 2009 10:00:03 +0000 (11:00 +0100)
committerSascha Hauer <s.hauer@pengutronix.de>
Fri, 13 Mar 2009 09:34:31 +0000 (10:34 +0100)
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>
arch/arm/mach-mx2/pcm038.c

index 7d935e17aa1cfcc9980b650c7db3ce8d8c0fdd64..aa4eaa61d1b5852bb58830cfdc6b9121741cc77e 100644 (file)
@@ -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)
 {