diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-06-20 16:30:01 +0900 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-06-20 16:30:01 +0900 |
commit | 6d90eb7ba341b3eb035121eff0b69d370cbc251e (patch) | |
tree | 332809825f5aab97e839ab4534e5b81fb28e0c84 /kernel/dma/Makefile | |
parent | f5b65348fd77839b50e79bc0a5e536832ea52d8d (diff) | |
parent | cf65a0f6f6ff7631ba0ac0513a14ca5b65320d80 (diff) | |
download | talos-obmc-linux-6d90eb7ba341b3eb035121eff0b69d370cbc251e.tar.gz talos-obmc-linux-6d90eb7ba341b3eb035121eff0b69d370cbc251e.zip |
Merge tag 'dma-rename-4.18' of git://git.infradead.org/users/hch/dma-mapping
Pull dma-mapping rename from Christoph Hellwig:
"Move all the dma-mapping code to kernel/dma and lose their dma-*
prefixes"
* tag 'dma-rename-4.18' of git://git.infradead.org/users/hch/dma-mapping:
dma-mapping: move all DMA mapping code to kernel/dma
dma-mapping: use obj-y instead of lib-y for generic dma ops
Diffstat (limited to 'kernel/dma/Makefile')
-rw-r--r-- | kernel/dma/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/dma/Makefile b/kernel/dma/Makefile new file mode 100644 index 000000000000..6de44e4eb454 --- /dev/null +++ b/kernel/dma/Makefile @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: GPL-2.0 + +obj-$(CONFIG_HAS_DMA) += mapping.o +obj-$(CONFIG_DMA_CMA) += contiguous.o +obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += coherent.o +obj-$(CONFIG_DMA_DIRECT_OPS) += direct.o +obj-$(CONFIG_DMA_NONCOHERENT_OPS) += noncoherent.o +obj-$(CONFIG_DMA_VIRT_OPS) += virt.o +obj-$(CONFIG_DMA_API_DEBUG) += debug.o +obj-$(CONFIG_SWIOTLB) += swiotlb.o + |