]> Git Repo - J-linux.git/blob - arch/powerpc/kernel/dma-mask.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-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/dma-map-ops.h>
5 #include <linux/export.h>
6 #include <asm/machdep.h>
7
8 void arch_dma_set_mask(struct device *dev, u64 dma_mask)
9 {
10         if (ppc_md.dma_set_mask)
11                 ppc_md.dma_set_mask(dev, dma_mask);
12 }
13 EXPORT_SYMBOL(arch_dma_set_mask);
This page took 0.035453 seconds and 4 git commands to generate.