brintos

brintos / linux-shallow public Read only

0
0
Text · 655 B · 232bf89 Raw
27 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2021 Intel Corporation4 */5 6#ifndef __INTEL_FB_BO_H__7#define __INTEL_FB_BO_H__8 9struct drm_file;10struct drm_mode_fb_cmd2;11struct drm_i915_gem_object;12struct drm_i915_private;13struct intel_framebuffer;14 15void intel_fb_bo_framebuffer_fini(struct drm_i915_gem_object *obj);16 17int intel_fb_bo_framebuffer_init(struct intel_framebuffer *intel_fb,18				 struct drm_i915_gem_object *obj,19				 struct drm_mode_fb_cmd2 *mode_cmd);20 21struct drm_i915_gem_object *22intel_fb_bo_lookup_valid_bo(struct drm_i915_private *i915,23			    struct drm_file *filp,24			    const struct drm_mode_fb_cmd2 *user_mode_cmd);25 26#endif27