csky: don't use GFP_DMA in atomic_pool_init

csky does not implement ZONE_DMA, which means passing GFP_DMA is a no-op.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Guo Ren <ren_guo@c-sky.com>
This commit is contained in:
Christoph Hellwig 2018-11-04 17:46:21 +01:00
parent de90d7c428
commit 576d0d552b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ static int __init atomic_pool_init(void)
if (!atomic_pool)
BUG();
page = alloc_pages(GFP_KERNEL | GFP_DMA, get_order(size));
page = alloc_pages(GFP_KERNEL, get_order(size));
if (!page)
BUG();