diff options
author | Sudhakar Rajashekhara <sudhakar.raj@ti.com> | 2009-07-10 06:28:52 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-08-26 10:57:02 +0300 |
commit | 2259bbd460c5c15567e2e311d0ab0fe763b40031 (patch) | |
tree | 974671c1f8d6d502be8833333539d9bad2830757 /arch/arm/mach-davinci | |
parent | bea238f65c81742a03662e4664d88a9b4de5ea83 (diff) | |
download | kernel_samsung_tuna-2259bbd460c5c15567e2e311d0ab0fe763b40031.zip kernel_samsung_tuna-2259bbd460c5c15567e2e311d0ab0fe763b40031.tar.gz kernel_samsung_tuna-2259bbd460c5c15567e2e311d0ab0fe763b40031.tar.bz2 |
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>
Diffstat (limited to 'arch/arm/mach-davinci')
-rw-r--r-- | arch/arm/mach-davinci/devices-da8xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c index c367055..11c0971 100644 --- a/arch/arm/mach-davinci/devices-da8xx.c +++ b/arch/arm/mach-davinci/devices-da8xx.c @@ -133,7 +133,7 @@ static struct resource da8xx_edma_resources[] = { }, { .name = "edma0", - .start = IRQ_DA8XX_TCERRINT0, + .start = IRQ_DA8XX_CCINT0, .flags = IORESOURCE_IRQ, }, { |