Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 576d0d55 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

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: default avatarChristoph Hellwig <hch@lst.de>
Acked-by: default avatarGuo Ren <ren_guo@c-sky.com>
parent de90d7c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();