brintos

brintos / linux-shallow public Read only

0
0
Text · 571 B · 4832fe6 Raw
22 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef __INTEL_FBDEV_FB_H__7#define __INTEL_FBDEV_FB_H__8 9struct drm_fb_helper;10struct drm_fb_helper_surface_size;11struct drm_i915_gem_object;12struct drm_i915_private;13struct fb_info;14struct i915_vma;15 16struct intel_framebuffer *intel_fbdev_fb_alloc(struct drm_fb_helper *helper,17					       struct drm_fb_helper_surface_size *sizes);18int intel_fbdev_fb_fill_info(struct drm_i915_private *i915, struct fb_info *info,19			     struct drm_i915_gem_object *obj, struct i915_vma *vma);20 21#endif22