uwb: Use kcalloc instead of kzalloc to allocate array
[zen-stable.git] / arch / x86 / include / asm / swiotlb.h
blob977f1761a25d51b25737d84436a3a80dd3f60810
1 #ifndef _ASM_X86_SWIOTLB_H
2 #define _ASM_X86_SWIOTLB_H
4 #include <linux/swiotlb.h>
6 #ifdef CONFIG_SWIOTLB
7 extern int swiotlb;
8 extern int __init pci_swiotlb_detect_override(void);
9 extern int __init pci_swiotlb_detect_4gb(void);
10 extern void __init pci_swiotlb_init(void);
11 extern void __init pci_swiotlb_late_init(void);
12 #else
13 #define swiotlb 0
14 static inline int pci_swiotlb_detect_override(void)
16 return 0;
18 static inline int pci_swiotlb_detect_4gb(void)
20 return 0;
22 static inline void pci_swiotlb_init(void)
25 static inline void pci_swiotlb_late_init(void)
28 #endif
30 static inline void dma_mark_clean(void *addr, size_t size) {}
32 #endif /* _ASM_X86_SWIOTLB_H */