DIR:/lib/modules/5.14.0-503.34.1.el9_5.x86_64/build/include/xen/arm/ |
Current File : //lib/modules/5.14.0-503.34.1.el9_5.x86_64/build/include/xen/arm/xen-ops.h |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_ARM_XEN_OPS_H #define _ASM_ARM_XEN_OPS_H #include <xen/swiotlb-xen.h> static inline void xen_setup_dma_ops(struct device *dev) { #ifdef CONFIG_XEN if (xen_swiotlb_detect()) dev->dma_ops = &xen_swiotlb_dma_ops; #endif } #endif /* _ASM_ARM_XEN_OPS_H */ |