diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-08-06 04:52:41 -0400 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-12-23 03:52:48 -0500 |
commit | 534a729866f9edc9264340c5b96cb94878ffda00 (patch) | |
tree | 43e74e6e3b9ca0bf96a816d20dd8f67214a3178c | |
parent | fbde286783f7c1e55e6c33575fa1a56f8ea77c90 (diff) |
dmaengine: Add 16 bytes, 32 bytes and 64 bytes bus widths
The widths are missing, add them.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
-rw-r--r-- | include/linux/dmaengine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 6d34ce91036c..b7724a5d4661 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
@@ -279,6 +279,9 @@ enum dma_slave_buswidth { | |||
279 | DMA_SLAVE_BUSWIDTH_3_BYTES = 3, | 279 | DMA_SLAVE_BUSWIDTH_3_BYTES = 3, |
280 | DMA_SLAVE_BUSWIDTH_4_BYTES = 4, | 280 | DMA_SLAVE_BUSWIDTH_4_BYTES = 4, |
281 | DMA_SLAVE_BUSWIDTH_8_BYTES = 8, | 281 | DMA_SLAVE_BUSWIDTH_8_BYTES = 8, |
282 | DMA_SLAVE_BUSWIDTH_16_BYTES = 16, | ||
283 | DMA_SLAVE_BUSWIDTH_32_BYTES = 32, | ||
284 | DMA_SLAVE_BUSWIDTH_64_BYTES = 64, | ||
282 | }; | 285 | }; |
283 | 286 | ||
284 | /** | 287 | /** |