brintos

brintos / linux-shallow public Read only

0
0
Text · 580 B · 6664e06 Raw
24 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2022 Intel Corporation4 */5 6#ifndef __I915_GEM_INTERNAL_H__7#define __I915_GEM_INTERNAL_H__8 9#include <linux/types.h>10 11struct drm_i915_gem_object;12struct drm_i915_gem_object_ops;13struct drm_i915_private;14 15struct drm_i915_gem_object *16i915_gem_object_create_internal(struct drm_i915_private *i915,17				phys_addr_t size);18struct drm_i915_gem_object *19__i915_gem_object_create_internal(struct drm_i915_private *i915,20				  const struct drm_i915_gem_object_ops *ops,21				  phys_addr_t size);22 23#endif /* __I915_GEM_INTERNAL_H__ */24