projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb4416a
)
[ARM] pcm038: Fix pins for UART3
author
Sascha Hauer
<s.hauer@pengutronix.de>
Mon, 9 Feb 2009 10:00:03 +0000
(11:00 +0100)
committer
Sascha 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
patch
|
blob
|
history
diff --git
a/arch/arm/mach-mx2/pcm038.c
b/arch/arm/mach-mx2/pcm038.c
index
7d935e1
..
aa4eaa6
100644
(file)
--- a/
arch/arm/mach-mx2/pcm038.c
+++ b/
arch/arm/mach-mx2/pcm038.c
@@
-128,10
+128,10
@@
static int uart_mxc_port1_exit(struct platform_device *pdev)
return 0;
}
-static int mxc_uart2_pins[] = { PE
10_PF_UART3_CTS
,
+static int mxc_uart2_pins[] = { PE
8_PF_UART3_TXD
,
PE9_PF_UART3_RXD,
PE10_PF_UART3_CTS,
- PE
9_PF_UART3_RXD
};
+ PE
11_PF_UART3_RTS
};
static int uart_mxc_port2_init(struct platform_device *pdev)
{