diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2019-05-21 09:06:42 +0200 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2019-06-27 20:05:30 +0200 |
commit | ceeeb99cd821a2f7493e1e0e1eca5afc7a205213 (patch) | |
tree | 3be7ff944e556606dcd46039ca8cbb6cf0cdafdf /include/linux | |
parent | e0ddaab76802d3179013f4864535043e2aea6c69 (diff) | |
download | blackbird-op-linux-ceeeb99cd821a2f7493e1e0e1eca5afc7a205213.tar.gz blackbird-op-linux-ceeeb99cd821a2f7493e1e0e1eca5afc7a205213.zip |
dmaengine: mxs: rename custom flag
The mxs dma driver uses the flags parameter in dmaengine_prep_slave_sg() for
custom flags, but still uses the dmaengine specific names of the flags.
Do a little bit better and at least give the flag a custom name.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/dma/mxs-dma.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/dma/mxs-dma.h b/include/linux/dma/mxs-dma.h index 092b2a7b92ac..4a33f2c8a682 100644 --- a/include/linux/dma/mxs-dma.h +++ b/include/linux/dma/mxs-dma.h @@ -4,6 +4,8 @@ #include <linux/dmaengine.h> +#define MXS_DMA_CTRL_WAIT4END BIT(31) + /* * The mxs dmaengine can do PIO transfers. We pass a pointer to the PIO words * in the second argument to dmaengine_prep_slave_sg when the direction is |