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 04:55:48 -0400 |
commit | 10eef5a8a08d8be455ae5f9599b214c33ad52340 (patch) | |
tree | ef13ae6e23136dd85f3f7d3e60d83c6765044359 | |
parent | 889c1e0dabcebe3aab3fb5aec3f506d7d614ec61 (diff) |
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>
-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 { | |||
210 | enum dma_event_q { | 210 | enum dma_event_q { |
211 | EVENTQ_0 = 0, | 211 | EVENTQ_0 = 0, |
212 | EVENTQ_1 = 1, | 212 | EVENTQ_1 = 1, |
213 | EVENTQ_2 = 2, | ||
214 | EVENTQ_3 = 3, | ||
213 | EVENTQ_DEFAULT = -1 | 215 | EVENTQ_DEFAULT = -1 |
214 | }; | 216 | }; |
215 | 217 | ||