Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 1b929c02afd37871d5afb9d498426f83432e71c2 authored by Linus Torvalds on 25 December 2022, 21:41:39 UTC
Linux 6.2-rc1
Tip revision: 1b929c0
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>
#include <xen/xen-ops.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 */
back to top