Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.9.4.
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef __DRM_FB_CMA_HELPER_H__
 3#define __DRM_FB_CMA_HELPER_H__
 4
 5struct drm_framebuffer;
 6struct drm_plane_state;
 7
 8struct drm_gem_cma_object *drm_fb_cma_get_gem_obj(struct drm_framebuffer *fb,
 9	unsigned int plane);
10
11dma_addr_t drm_fb_cma_get_gem_addr(struct drm_framebuffer *fb,
12				   struct drm_plane_state *state,
13				   unsigned int plane);
14
15#endif
16