1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_X86_SWIOTLB_XEN_H 3 #define _ASM_X86_SWIOTLB_XEN_H 4 5 #ifdef CONFIG_SWIOTLB_XEN 6 extern int __init pci_xen_swiotlb_detect(void); 7 extern int pci_xen_swiotlb_init_late(void); 8 #else 9 #define pci_xen_swiotlb_detect NULL 10 static inline int pci_xen_swiotlb_init_late(void) { return -ENXIO; } 11 #endif 12 13 #endif /* _ASM_X86_SWIOTLB_XEN_H */ 14