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 v5.6-rc5 18 lines 418 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __DRM_FB_CMA_HELPER_H__ 3#define __DRM_FB_CMA_HELPER_H__ 4 5#include <linux/types.h> 6 7struct drm_framebuffer; 8struct drm_plane_state; 9 10struct drm_gem_cma_object *drm_fb_cma_get_gem_obj(struct drm_framebuffer *fb, 11 unsigned int plane); 12 13dma_addr_t drm_fb_cma_get_gem_addr(struct drm_framebuffer *fb, 14 struct drm_plane_state *state, 15 unsigned int plane); 16 17#endif 18