2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-27 06:34:11 +08:00

dma-mapping: move dma_default_get_required_mask under ifdef

This avoids a warning on powerpc.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
This commit is contained in:
Christoph Hellwig 2018-10-02 07:21:31 -07:00
parent 9d7a224b46
commit 6db37ad7c2

View File

@ -1179,6 +1179,7 @@ int __init platform_bus_init(void)
return error;
}
#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
static u64 dma_default_get_required_mask(struct device *dev)
{
u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT);
@ -1198,7 +1199,6 @@ static u64 dma_default_get_required_mask(struct device *dev)
return mask;
}
#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
u64 dma_get_required_mask(struct device *dev)
{
const struct dma_map_ops *ops = get_dma_ops(dev);