Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16 26 lines 612 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef __INTEL_FB_BO_H__ 7#define __INTEL_FB_BO_H__ 8 9struct drm_device; 10struct drm_file; 11struct drm_framebuffer; 12struct drm_gem_object; 13struct drm_mode_fb_cmd2; 14 15void intel_fb_bo_framebuffer_fini(struct drm_gem_object *obj); 16 17int intel_fb_bo_framebuffer_init(struct drm_framebuffer *fb, 18 struct drm_gem_object *obj, 19 struct drm_mode_fb_cmd2 *mode_cmd); 20 21struct drm_gem_object * 22intel_fb_bo_lookup_valid_bo(struct drm_device *drm, 23 struct drm_file *filp, 24 const struct drm_mode_fb_cmd2 *user_mode_cmd); 25 26#endif