From: Jeff Hansen Date: Thu, 1 Dec 2005 15:50:35 +0000 (+0000) Subject: [ARM] Fix IXDP425 setup bug X-Git-Tag: v2.6.15-rc5~17^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a35d6c91b8f061da9b76c8c0102d1e1e6bc6f47b;p=platform%2Fkernel%2Flinux-exynos.git [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 Signed-off-by: Russell King --- diff --git a/arch/arm/mach-ixp4xx/ixdp425-setup.c b/arch/arm/mach-ixp4xx/ixdp425-setup.c index 0a41080..3a22d84e 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,