Commit b88ac005 authored by Daniel Vetter's avatar Daniel Vetter

drm: drop drmP.h include from drm_plane.c

Just a bit of missing includes and pre declarations.

v2: Compiles now, with drm/drm_util.h extracted.

v3: Rebase

v3: Fix up commit message (Sam Ravnborg)
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180905135711.28370-3-daniel.vetter@ffwll.ch
parent 99f45e32
...@@ -31,6 +31,14 @@ ...@@ -31,6 +31,14 @@
* and are not exported to drivers. * and are not exported to drivers.
*/ */
enum drm_mode_status;
enum drm_connector_force;
struct drm_display_mode;
struct work_struct;
struct drm_connector;
struct drm_bridge;
struct edid;
/* drm_crtc.c */ /* drm_crtc.c */
int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj, int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
......
...@@ -20,8 +20,17 @@ ...@@ -20,8 +20,17 @@
* OF THIS SOFTWARE. * OF THIS SOFTWARE.
*/ */
#include <drm/drmP.h> #include <linux/slab.h>
#include <linux/uaccess.h>
#include <drm/drm_plane.h> #include <drm/drm_plane.h>
#include <drm/drm_drv.h>
#include <drm/drm_print.h>
#include <drm/drm_framebuffer.h>
#include <drm/drm_file.h>
#include <drm/drm_crtc.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_vblank.h>
#include "drm_crtc_internal.h" #include "drm_crtc_internal.h"
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#define __DRM_COLOR_MGMT_H__ #define __DRM_COLOR_MGMT_H__
#include <linux/ctype.h> #include <linux/ctype.h>
#include <drm/drm_property.h>
struct drm_crtc; struct drm_crtc;
struct drm_plane; struct drm_plane;
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
#include <linux/ctype.h> #include <linux/ctype.h>
#include <drm/drm_mode_object.h> #include <drm/drm_mode_object.h>
#include <drm/drm_color_mgmt.h> #include <drm/drm_color_mgmt.h>
#include <drm/drm_rect.h>
#include <drm/drm_modeset_lock.h>
#include <drm/drm_util.h> #include <drm/drm_util.h>
struct drm_crtc; struct drm_crtc;
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
#include <linux/ctype.h> #include <linux/ctype.h>
#include <drm/drm_mode_object.h> #include <drm/drm_mode_object.h>
#include <uapi/drm/drm_mode.h>
/** /**
* struct drm_property_enum - symbolic values for enumerations * struct drm_property_enum - symbolic values for enumerations
* @value: numeric property value for this enum entry * @value: numeric property value for this enum entry
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment