22 lines · c
1/*2 * SPDX-License-Identifier: MIT3 *4 * Copyright © 2019 Intel Corporation5 */6 7#ifndef IGT_MMAP_H8#define IGT_MMAP_H9 10#include <linux/types.h>11 12struct drm_i915_private;13struct drm_vma_offset_node;14 15unsigned long igt_mmap_offset(struct drm_i915_private *i915,16 u64 offset,17 unsigned long size,18 unsigned long prot,19 unsigned long flags);20 21#endif /* IGT_MMAP_H */22