diff options
| -rw-r--r-- | drivers/dma/ste_dma40.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index 12de79e84b15..cd7b4808d08c 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c | |||
| @@ -56,7 +56,21 @@ | |||
| 56 | #define MAX(a, b) (((a) < (b)) ? (b) : (a)) | 56 | #define MAX(a, b) (((a) < (b)) ? (b) : (a)) |
| 57 | 57 | ||
| 58 | /* Reserved event lines for memcpy only. */ | 58 | /* Reserved event lines for memcpy only. */ |
| 59 | static int dma40_memcpy_channels[] = { 56, 57, 58, 59, 60 }; | 59 | #define DB8500_DMA_MEMCPY_EV_0 51 |
| 60 | #define DB8500_DMA_MEMCPY_EV_1 56 | ||
| 61 | #define DB8500_DMA_MEMCPY_EV_2 57 | ||
| 62 | #define DB8500_DMA_MEMCPY_EV_3 58 | ||
| 63 | #define DB8500_DMA_MEMCPY_EV_4 59 | ||
| 64 | #define DB8500_DMA_MEMCPY_EV_5 60 | ||
| 65 | |||
| 66 | static int dma40_memcpy_channels[] = { | ||
| 67 | DB8500_DMA_MEMCPY_EV_0, | ||
| 68 | DB8500_DMA_MEMCPY_EV_1, | ||
| 69 | DB8500_DMA_MEMCPY_EV_2, | ||
| 70 | DB8500_DMA_MEMCPY_EV_3, | ||
| 71 | DB8500_DMA_MEMCPY_EV_4, | ||
| 72 | DB8500_DMA_MEMCPY_EV_5, | ||
| 73 | }; | ||
| 60 | 74 | ||
| 61 | /** | 75 | /** |
| 62 | * enum 40_command - The different commands and/or statuses. | 76 | * enum 40_command - The different commands and/or statuses. |
