dma-mapping.c 245 B

123456789
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/dma-map-ops.h>
  3. #include <linux/export.h>
  4. /* Set this to 1 if there is a HW IOMMU in the system */
  5. int iommu_detected __read_mostly;
  6. const struct dma_map_ops *dma_ops;
  7. EXPORT_SYMBOL(dma_ops);