davinci: Pass proper EDMA CC interrupt number for DA830/OMAP-L137

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>
This commit is contained in:
Sudhakar Rajashekhara 2009-07-10 06:28:52 -04:00 committed by Kevin Hilman
parent bea238f65c
commit 2259bbd460
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ static struct resource da8xx_edma_resources[] = {
},
{
.name = "edma0",
.start = IRQ_DA8XX_TCERRINT0,
.start = IRQ_DA8XX_CCINT0,
.flags = IORESOURCE_IRQ,
},
{