Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.17 21 lines 558 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2023 Intel Corporation 4 */ 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_gem_object; 12struct fb_info; 13struct i915_vma; 14struct intel_display; 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 intel_display *display, struct fb_info *info, 19 struct drm_gem_object *obj, struct i915_vma *vma); 20 21#endif