repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
18 lines
559 B
C
18 lines
559 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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);
|
|
extern int pci_xen_swiotlb_init_late(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) { }
|
|
static inline int pci_xen_swiotlb_init_late(void) { return -ENXIO; }
|
|
#endif
|
|
|
|
#endif /* _ASM_X86_SWIOTLB_XEN_H */
|