root/arch/powerpc/kernel/dma-mask.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. arch_dma_set_mask

   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);

/* [<][>][^][v][top][bottom][index][help] */