drm/fb-cma-helpers: Fix include issue

Exported functions prototypes are missing in drm_fb_cma_helper.c
Include drm_fb_cma_helper to fix that issue.

Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20191119105753.32363-1-benjamin.gaignard@st.com
This commit is contained in:
Benjamin Gaignard 2019-11-19 11:57:53 +01:00
parent f199af0018
commit 9d10fc2649
2 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* Copyright (C) 2012 Red Hat
*/
#include <drm/drm_fb_cma_helper.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_framebuffer.h>
#include <drm/drm_gem_cma_helper.h>

View File

@ -2,6 +2,8 @@
#ifndef __DRM_FB_CMA_HELPER_H__
#define __DRM_FB_CMA_HELPER_H__
#include <linux/types.h>
struct drm_framebuffer;
struct drm_plane_state;