hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/arch/x86/include/asm/dma-mapping.h
....@@ -3,24 +3,15 @@
33 #define _ASM_X86_DMA_MAPPING_H
44
55 /*
6
- * IOMMU interface. See Documentation/DMA-API-HOWTO.txt and
7
- * Documentation/DMA-API.txt for documentation.
6
+ * IOMMU interface. See Documentation/core-api/dma-api-howto.rst and
7
+ * Documentation/core-api/dma-api.rst for documentation.
88 */
99
1010 #include <linux/scatterlist.h>
11
-#include <linux/dma-debug.h>
1211 #include <asm/io.h>
1312 #include <asm/swiotlb.h>
14
-#include <linux/dma-contiguous.h>
15
-
16
-#ifdef CONFIG_ISA
17
-# define ISA_DMA_BIT_MASK DMA_BIT_MASK(24)
18
-#else
19
-# define ISA_DMA_BIT_MASK DMA_BIT_MASK(32)
20
-#endif
2113
2214 extern int iommu_merge;
23
-extern struct device x86_dma_fallback_dev;
2415 extern int panic_on_overflow;
2516
2617 extern const struct dma_map_ops *dma_ops;
....@@ -29,8 +20,5 @@
2920 {
3021 return dma_ops;
3122 }
32
-
33
-bool arch_dma_alloc_attrs(struct device **dev);
34
-#define arch_dma_alloc_attrs arch_dma_alloc_attrs
3523
3624 #endif