diff options
author | Christoph Hellwig <hch@lst.de> | 2018-01-10 18:21:13 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-01-10 18:40:54 +0300 |
commit | ea8c64ace86647260ec4255f483e5844d62af2df (patch) | |
tree | 420f44f5f8c6839d96e814066cc6a8e80957bf01 /drivers/mtd | |
parent | 10dac04c79b181b255a62f60919f29acc56277ac (diff) | |
download | linux-ea8c64ace86647260ec4255f483e5844d62af2df.tar.xz |
dma-mapping: move swiotlb arch helpers to a new header
phys_to_dma, dma_to_phys and dma_capable are helpers published by
architecture code for use of swiotlb and xen-swiotlb only. Drivers are
not supposed to use these directly, but use the DMA API instead.
Move these to a new asm/dma-direct.h helper, included by a
linux/dma-direct.h wrapper that provides the default linear mapping
unless the architecture wants to override it.
In the MIPS case the existing dma-coherent.h is reused for now as
untangling it will take a bit of work.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Robin Murphy <robin.murphy@arm.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/qcom_nandc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/qcom_nandc.c b/drivers/mtd/nand/qcom_nandc.c index 2656c1ac5646..411cdfd12a85 100644 --- a/drivers/mtd/nand/qcom_nandc.c +++ b/drivers/mtd/nand/qcom_nandc.c @@ -23,6 +23,7 @@ #include <linux/of_device.h> #include <linux/delay.h> #include <linux/dma/qcom_bam_dma.h> +#include <linux/dma-direct.h> /* XXX: drivers shall never use this directly! */ /* NANDc reg offsets */ #define NAND_FLASH_CMD 0x00 |