aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoralf Trønnes <[email protected]>2017-01-22 19:11:11 +0100
committerDaniel Vetter <[email protected]>2017-01-24 11:00:22 +0100
commita6a9534cdd19f1c1bab76538c529ce92d85eb4d8 (patch)
tree4164b30f2ad32aff54262e67c5456cb2a8b1d94d
parenta4405b567eb9d29bc4ff911b9377077a94663f57 (diff)
drm/simple-helpers: Add missing includes
Add missing includes to pull in definitions for drm_crtc, drm_plane and drm_encoder. Signed-off-by: Noralf Trønnes <[email protected]> Signed-off-by: Daniel Vetter <[email protected]> Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r--include/drm/drm_simple_kms_helper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/drm/drm_simple_kms_helper.h b/include/drm/drm_simple_kms_helper.h
index fe8c4ba905ac..d138d08a48c1 100644
--- a/include/drm/drm_simple_kms_helper.h
+++ b/include/drm/drm_simple_kms_helper.h
@@ -10,6 +10,10 @@
#ifndef __LINUX_DRM_SIMPLE_KMS_HELPER_H
#define __LINUX_DRM_SIMPLE_KMS_HELPER_H
+#include <drm/drm_crtc.h>
+#include <drm/drm_encoder.h>
+#include <drm/drm_plane.h>
+
struct drm_simple_display_pipe;
/**