summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorManuel Lauss <manuel.lauss@googlemail.com>2009-10-28 21:49:46 +0100
committerRalf Baechle <ralf@linux-mips.org>2010-02-27 12:52:56 +0100
commit63ea336b7942214edce1ae79725f28593dc84eaa (patch)
treee0091a31d0dde8a5f6de036cd28821bd4b3ea16c /arch
parentMIPS: Alchemy: Turn on -Werror for devboards and xss1500 (diff)
downloadlinux-63ea336b7942214edce1ae79725f28593dc84eaa.tar.xz
linux-63ea336b7942214edce1ae79725f28593dc84eaa.zip
MIPS: Alchemy: UARTs are of type 16550A
UART autodetection breaks on the Au1300 but the IP blocks are identical, at least according to the datasheets. Help the 8250 driver by passing on uart type information via platform data. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/alchemy/common/platform.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/alchemy/common/platform.c b/arch/mips/alchemy/common/platform.c
index 195e5b3e8b41..3be14b09157c 100644
--- a/arch/mips/alchemy/common/platform.c
+++ b/arch/mips/alchemy/common/platform.c
@@ -26,7 +26,9 @@
.irq = _irq, \
.regshift = 2, \
.iotype = UPIO_AU, \
- .flags = UPF_SKIP_TEST | UPF_IOREMAP \
+ .flags = UPF_SKIP_TEST | UPF_IOREMAP | \
+ UPF_FIXED_TYPE, \
+ .type = PORT_16550A, \
}
static struct plat_serial8250_port au1x00_uart_data[] = {