mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Replace multi-line SPDX license headers with single-line equivalents (// SPDX-License-Identifier: MIT or /* ... */ for headers), as preferred by current kernel coding style. Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Nitin Gote <nitin.r.gote@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Mikołaj Wasiak <mikolaj.wasiak@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250327232629.2939-1-andi.shyti@linux.intel.com
32 lines
939 B
C
32 lines
939 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_GEM_MMAN_H__
|
|
#define __I915_GEM_MMAN_H__
|
|
|
|
#include <linux/mm_types.h>
|
|
#include <linux/types.h>
|
|
|
|
struct drm_device;
|
|
struct drm_file;
|
|
struct drm_i915_gem_object;
|
|
struct file;
|
|
struct i915_mmap_offset;
|
|
struct mutex;
|
|
|
|
int i915_gem_mmap_gtt_version(void);
|
|
int i915_gem_mmap(struct file *filp, struct vm_area_struct *vma);
|
|
|
|
int i915_gem_dumb_mmap_offset(struct drm_file *file_priv,
|
|
struct drm_device *dev,
|
|
u32 handle, u64 *offset);
|
|
|
|
void __i915_gem_object_release_mmap_gtt(struct drm_i915_gem_object *obj);
|
|
void i915_gem_object_release_mmap_gtt(struct drm_i915_gem_object *obj);
|
|
|
|
void i915_gem_object_runtime_pm_release_mmap_offset(struct drm_i915_gem_object *obj);
|
|
void i915_gem_object_release_mmap_offset(struct drm_i915_gem_object *obj);
|
|
int i915_gem_fb_mmap(struct drm_i915_gem_object *obj, struct vm_area_struct *vma);
|
|
#endif
|