diff options
author | Sandeep Paulraj <s-paulraj@ti.com> | 2009-07-27 08:50:16 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-08-26 11:55:48 +0300 |
commit | 10eef5a8a08d8be455ae5f9599b214c33ad52340 (patch) | |
tree | ef13ae6e23136dd85f3f7d3e60d83c6765044359 /arch/arm | |
parent | 889c1e0dabcebe3aab3fb5aec3f506d7d614ec61 (diff) | |
download | blackbird-op-linux-10eef5a8a08d8be455ae5f9599b214c33ad52340.tar.gz blackbird-op-linux-10eef5a8a08d8be455ae5f9599b214c33ad52340.zip |
DaVinci: EDMA: Add queue 2 and 3 for DM365 and DM6467
DM365 and DM6467 have 4 queues. The patch updates the
'dma_event_q' enum to reflect this.
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/edma.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/edma.h b/arch/arm/mach-davinci/include/mach/edma.h index a85cbedc9b0a..5d4896226460 100644 --- a/arch/arm/mach-davinci/include/mach/edma.h +++ b/arch/arm/mach-davinci/include/mach/edma.h @@ -210,6 +210,8 @@ enum fifo_width { enum dma_event_q { EVENTQ_0 = 0, EVENTQ_1 = 1, + EVENTQ_2 = 2, + EVENTQ_3 = 3, EVENTQ_DEFAULT = -1 }; |