Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * SPDX-License-Identifier: MIT
0003  *
0004  * Copyright © 2019 Intel Corporation
0005  */
0006 
0007 #ifndef IGT_MMAP_H
0008 #define IGT_MMAP_H
0009 
0010 #include <linux/types.h>
0011 
0012 struct drm_i915_private;
0013 struct drm_vma_offset_node;
0014 
0015 unsigned long igt_mmap_offset(struct drm_i915_private *i915,
0016                   u64 offset,
0017                   unsigned long size,
0018                   unsigned long prot,
0019                   unsigned long flags);
0020 
0021 #endif /* IGT_MMAP_H */