JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_ARM_XEN_OPS_H #define _ASM_ARM_XEN_OPS_H #include #include 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 */