ARM: S3C24XX: Fix Demux error in UART3 irqs on S3C2443 and S3C2416
authorAbhilash Kesavan <a.kesavan@samsung.com>
Thu, 21 Oct 2010 01:15:48 +0000 (06:45 +0530)
committerKukjin Kim <kgene.kim@samsung.com>
Thu, 25 Nov 2010 01:58:11 +0000 (10:58 +0900)
IRQ_S3C2443_UART3 is being used as the base when it should actually
be IRQ_S3C2443_RX3 on S3C2443 and S3C2416 for the UART3.

Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-s3c2416/irq.c
arch/arm/mach-s3c2443/irq.c

index 084d121f368cc87d2dfcd6bce0cf6281ab12ba51..784485777896570a630d47380f98acc0c15c99b0 100644 (file)
@@ -168,7 +168,7 @@ static struct irq_chip s3c2416_irq_dma = {
 
 static void s3c2416_irq_demux_uart3(unsigned int irq, struct irq_desc *desc)
 {
-       s3c2416_irq_demux(IRQ_S3C2443_UART3, 3);
+       s3c2416_irq_demux(IRQ_S3C2443_RX3, 3);
 }
 
 #define INTMSK_UART3   (1UL << (IRQ_S3C2443_UART3 - IRQ_EINT0))
index 0e0d693f397449139f8fd9e790a1f4693e3f661b..df2b8db498188090d3e4fbe716c50b2ea0942807 100644 (file)
@@ -166,7 +166,7 @@ static struct irq_chip s3c2443_irq_dma = {
 
 static void s3c2443_irq_demux_uart3(unsigned int irq, struct irq_desc *desc)
 {
-       s3c2443_irq_demux(IRQ_S3C2443_UART3, 3);
+       s3c2443_irq_demux(IRQ_S3C2443_RX3, 3);
 }
 
 #define INTMSK_UART3   (1UL << (IRQ_S3C2443_UART3 - IRQ_EINT0))