diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-07-01 19:45:13 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-07-01 19:45:13 +0200 |
commit | c350d6d1d78789d73e8bf2047ab6564a4af4a02b (patch) | |
tree | 317b5d11ed6684360cd28c1ab177d93954fe6bfb | |
parent | Merge branch 'parisc-4.18-1' of git://git.kernel.org/pub/scm/linux/kernel/git... (diff) | |
parent | swiotlb: export swiotlb_dma_ops (diff) | |
download | linux-c350d6d1d78789d73e8bf2047ab6564a4af4a02b.tar.xz linux-c350d6d1d78789d73e8bf2047ab6564a4af4a02b.zip |
Merge tag 'dma-mapping-4.18-2' of git://git.infradead.org/users/hch/dma-mapping
Pull dma mapping fixlet from Christoph Hellwig:
"Add a missing export required by riscv and unicore"
* tag 'dma-mapping-4.18-2' of git://git.infradead.org/users/hch/dma-mapping:
swiotlb: export swiotlb_dma_ops
-rw-r--r-- | kernel/dma/swiotlb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c index 04b68d9dffac..904541055792 100644 --- a/kernel/dma/swiotlb.c +++ b/kernel/dma/swiotlb.c @@ -1085,3 +1085,4 @@ const struct dma_map_ops swiotlb_dma_ops = { .unmap_page = swiotlb_unmap_page, .dma_supported = dma_direct_supported, }; +EXPORT_SYMBOL(swiotlb_dma_ops); |