Skip to content

Commit

Permalink
davinci: Pass proper EDMA CC interrupt number for DA830/OMAP-L137
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Sudhakar Rajashekhara authored and Kevin Hilman committed Aug 26, 2009
1 parent bea238f commit 2259bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-davinci/devices-da8xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static struct resource da8xx_edma_resources[] = {
},
{
.name = "edma0",
.start = IRQ_DA8XX_TCERRINT0,
.start = IRQ_DA8XX_CCINT0,
.flags = IORESOURCE_IRQ,
},
{
Expand Down

0 comments on commit 2259bbd

Please sign in to comment.