brintos

brintos / linux-shallow public Read only

0
0
Text · 373 B · 847ea5b Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/* Copyright (C) 2013--2024 Intel Corporation */3 4#ifndef IPU6_DMA_H5#define IPU6_DMA_H6 7#include <linux/dma-map-ops.h>8#include <linux/iova.h>9 10struct ipu6_mmu_info;11 12struct ipu6_dma_mapping {13	struct ipu6_mmu_info *mmu_info;14	struct iova_domain iovad;15};16 17extern const struct dma_map_ops ipu6_dma_ops;18 19#endif /* IPU6_DMA_H */20