You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
#ifndef _ASM_X86_SWIOTLB_XEN_H
|
|
#define _ASM_X86_SWIOTLB_XEN_H
|
|
|
|
#ifdef CONFIG_SWIOTLB_XEN
|
|
extern int xen_swiotlb;
|
|
extern int __init pci_xen_swiotlb_detect(void);
|
|
extern void __init pci_xen_swiotlb_init(void);
|
|
#else
|
|
#define xen_swiotlb (0)
|
|
static inline int __init pci_xen_swiotlb_detect(void) { return 0; }
|
|
static inline void __init pci_xen_swiotlb_init(void) { }
|
|
#endif
|
|
|
|
#endif /* _ASM_X86_SWIOTLB_XEN_H */
|
|
|