]> Git Repo - linux.git/blob - arch/powerpc/kernel/dma-mask.c
libperf: Adopt xyarray class from perf
[linux.git] / arch / powerpc / kernel / dma-mask.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include <linux/dma-mapping.h>
4 #include <linux/export.h>
5 #include <asm/machdep.h>
6
7 void arch_dma_set_mask(struct device *dev, u64 dma_mask)
8 {
9         if (ppc_md.dma_set_mask)
10                 ppc_md.dma_set_mask(dev, dma_mask);
11 }
12 EXPORT_SYMBOL(arch_dma_set_mask);
This page took 0.032505 seconds and 4 git commands to generate.