diff options
author | Jeff Hansen <jhansen@cardaccess-inc.com> | 2005-12-01 15:50:35 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-12-01 15:50:35 +0000 |
commit | a35d6c91b8f061da9b76c8c0102d1e1e6bc6f47b (patch) | |
tree | 53169b760b0f7c2fc3be5b3e2e29702a212aba3d /arch/arm/mach-ixp4xx/ixdp425-setup.c | |
parent | 00b4c90787298349b799069360ced9ca843153dc (diff) | |
download | linux-3.10-a35d6c91b8f061da9b76c8c0102d1e1e6bc6f47b.tar.gz linux-3.10-a35d6c91b8f061da9b76c8c0102d1e1e6bc6f47b.tar.bz2 linux-3.10-a35d6c91b8f061da9b76c8c0102d1e1e6bc6f47b.zip |
[ARM] Fix IXDP425 setup bug
There is a typo in the ARM IXDP425 setup definition that mistakenly tries
to use UART1's IRQ for UART2's traffic.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ixp4xx/ixdp425-setup.c')
-rw-r--r-- | arch/arm/mach-ixp4xx/ixdp425-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ixp4xx/ixdp425-setup.c b/arch/arm/mach-ixp4xx/ixdp425-setup.c index 0a41080d226..3a22d84e104 100644 --- a/arch/arm/mach-ixp4xx/ixdp425-setup.c +++ b/arch/arm/mach-ixp4xx/ixdp425-setup.c @@ -85,7 +85,7 @@ static struct plat_serial8250_port ixdp425_uart_data[] = { { .mapbase = IXP4XX_UART2_BASE_PHYS, .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET, - .irq = IRQ_IXP4XX_UART1, + .irq = IRQ_IXP4XX_UART2, .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, .iotype = UPIO_MEM, .regshift = 2, |