diff options
author | Christoph Hellwig <hch@lst.de> | 2020-09-14 08:37:11 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-09-17 18:43:24 +0200 |
commit | 3799e402a4f0d69690e0838c4a68cab26d06283a (patch) | |
tree | d2eae71e38fa91c370d119337ae2549e50d2466f /arch/arm/common | |
parent | 002a26fb55282f7832e132d046d22e2c55f47103 (diff) | |
download | linux-3799e402a4f0d69690e0838c4a68cab26d06283a.tar.gz linux-3799e402a4f0d69690e0838c4a68cab26d06283a.tar.bz2 linux-3799e402a4f0d69690e0838c4a68cab26d06283a.zip |
ARM/dma-mapping: move various helpers from dma-mapping.h to dma-direct.h
Move the helpers to translate to and from direct mapping DMA addresses
to dma-direct.h. This not only is the most logical place, but the new
placement also avoids dependency loops with pending commits.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Diffstat (limited to 'arch/arm/common')
-rw-r--r-- | arch/arm/common/dmabounce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c index f4b719bde763..d3e00ea92088 100644 --- a/arch/arm/common/dmabounce.c +++ b/arch/arm/common/dmabounce.c @@ -24,7 +24,7 @@ #include <linux/slab.h> #include <linux/page-flags.h> #include <linux/device.h> -#include <linux/dma-mapping.h> +#include <linux/dma-direct.h> #include <linux/dmapool.h> #include <linux/list.h> #include <linux/scatterlist.h> |