diff options
Diffstat (limited to 'arch/powerpc/kernel/dma-swiotlb.c')
| -rw-r--r-- | arch/powerpc/kernel/dma-swiotlb.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/dma-swiotlb.c b/arch/powerpc/kernel/dma-swiotlb.c index e7fe218b869..02f724f3675 100644 --- a/arch/powerpc/kernel/dma-swiotlb.c +++ b/arch/powerpc/kernel/dma-swiotlb.c @@ -71,7 +71,7 @@ static int ppc_swiotlb_bus_notify(struct notifier_block *nb,  	sd->max_direct_dma_addr = 0;  	/* May need to bounce if the device can't address all of DRAM */ -	if ((dma_get_mask(dev) + 1) < lmb_end_of_DRAM()) +	if ((dma_get_mask(dev) + 1) < memblock_end_of_DRAM())  		set_dma_ops(dev, &swiotlb_dma_ops);  	return NOTIFY_DONE;  |