mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Prefer the driver agnostic struct drm_gem_object over i915 specific struct drm_i915_gem_object. The xe specific intel_fb_bo.h becomes redundant. Remove it, and rely on the common header in i915 display. Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/0efbc9ae2dbe157f92fa71d423ed37fd17346da5.1726589119.git.jani.nikula@intel.com
27 lines
635 B
C
27 lines
635 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_FB_BO_H__
|
|
#define __INTEL_FB_BO_H__
|
|
|
|
struct drm_file;
|
|
struct drm_gem_object;
|
|
struct drm_i915_private;
|
|
struct drm_mode_fb_cmd2;
|
|
struct intel_framebuffer;
|
|
|
|
void intel_fb_bo_framebuffer_fini(struct drm_gem_object *obj);
|
|
|
|
int intel_fb_bo_framebuffer_init(struct intel_framebuffer *intel_fb,
|
|
struct drm_gem_object *obj,
|
|
struct drm_mode_fb_cmd2 *mode_cmd);
|
|
|
|
struct drm_gem_object *
|
|
intel_fb_bo_lookup_valid_bo(struct drm_i915_private *i915,
|
|
struct drm_file *filp,
|
|
const struct drm_mode_fb_cmd2 *user_mode_cmd);
|
|
|
|
#endif
|