davinci: Pass proper EDMA CC interrupt number for DA830/OMAP-L137
authorSudhakar Rajashekhara <sudhakar.raj@ti.com>
Fri, 10 Jul 2009 10:28:52 +0000 (06:28 -0400)
committerKevin Hilman <khilman@deeprootsystems.com>
Wed, 26 Aug 2009 07:57:02 +0000 (10:57 +0300)
In EDMA resource structure, instead of passing EDMA CC
interrupt, EDMA TC error interrupt number is being passed.

Before the patch:
root@arago:~# cat /proc/interrupts
           CPU0
 12:          0     cp_intc  edma_error
 13:          0     cp_intc  edma
Err:

After the patch:
root@arago:~# cat /proc/interrupts
           CPU0
 11:          0     cp_intc  edma
 12:          0     cp_intc  edma_error
Err:

Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-davinci/devices-da8xx.c

index c367055ae9b97332150478300a4335e89c46d934..11c0971e13a6832bceab05aba7775043ccdd0852 100644 (file)
@@ -133,7 +133,7 @@ static struct resource da8xx_edma_resources[] = {
        },
        {
                .name   = "edma0",
-               .start  = IRQ_DA8XX_TCERRINT0,
+               .start  = IRQ_DA8XX_CCINT0,
                .flags  = IORESOURCE_IRQ,
        },
        {