diff options
author | Petr Štetiar <ynezz@true.cz> | 2013-08-29 10:28:11 -0400 |
---|---|---|
committer | Ryan Mallon <rmallon@gmail.com> | 2013-09-03 00:15:04 -0400 |
commit | cc3874fe56923e713427e4a3737c40746397347e (patch) | |
tree | d4911612cfbd2ad0f20884846dfef511e55bf9e7 | |
parent | ad81f0545ef01ea651886dddac4bef6cec930092 (diff) |
ARM: ep93xx: Don't use modem interface on the second UART
Second UART doesn't have modem interface, so any attempt to use set_mctrl() it
produce unwanted garbage on the line. There's no such 0x100 register offset
for the second UART either.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Cc: Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index df8612fbbc9c..3f12b885c083 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
@@ -281,7 +281,7 @@ static AMBA_APB_DEVICE(uart1, "apb:uart1", 0x00041010, EP93XX_UART1_PHYS_BASE, | |||
281 | { IRQ_EP93XX_UART1 }, &ep93xx_uart_data); | 281 | { IRQ_EP93XX_UART1 }, &ep93xx_uart_data); |
282 | 282 | ||
283 | static AMBA_APB_DEVICE(uart2, "apb:uart2", 0x00041010, EP93XX_UART2_PHYS_BASE, | 283 | static AMBA_APB_DEVICE(uart2, "apb:uart2", 0x00041010, EP93XX_UART2_PHYS_BASE, |
284 | { IRQ_EP93XX_UART2 }, &ep93xx_uart_data); | 284 | { IRQ_EP93XX_UART2 }, NULL); |
285 | 285 | ||
286 | static AMBA_APB_DEVICE(uart3, "apb:uart3", 0x00041010, EP93XX_UART3_PHYS_BASE, | 286 | static AMBA_APB_DEVICE(uart3, "apb:uart3", 0x00041010, EP93XX_UART3_PHYS_BASE, |
287 | { IRQ_EP93XX_UART3 }, &ep93xx_uart_data); | 287 | { IRQ_EP93XX_UART3 }, &ep93xx_uart_data); |