diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-03 12:42:15 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-08-29 16:43:33 +0200 |
commit | 8e3a68fb55e00e0760bd8023883e064f1f93c62d (patch) | |
tree | 534cbf26b705987972b800501afec405b9175533 /arch/nds32 | |
parent | 419e2f1838819e954071dfa1d1f820ab3386ada1 (diff) |
dma-mapping: make dma_atomic_pool_init self-contained
The memory allocated for the atomic pool needs to have the same
mapping attributes that we use for remapping, so use
pgprot_dmacoherent instead of open coding it. Also deduct a
suitable zone to allocate the memory from based on the presence
of the DMA zones.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/nds32')
-rw-r--r-- | arch/nds32/kernel/dma.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/nds32/kernel/dma.c b/arch/nds32/kernel/dma.c index 490e3720d694..4206d4b6c8ce 100644 --- a/arch/nds32/kernel/dma.c +++ b/arch/nds32/kernel/dma.c @@ -80,9 +80,3 @@ void arch_dma_prep_coherent(struct page *page, size_t size) { cache_op(page_to_phys(page), size, cpu_dma_wbinval_range); } - -static int __init atomic_pool_init(void) -{ - return dma_atomic_pool_init(GFP_KERNEL, pgprot_noncached(PAGE_KERNEL)); -} -postcore_initcall(atomic_pool_init); |