aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/bridge/thc63lvd1024.c
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2019-05-19 20:36:36 +0200
committerSam Ravnborg <sam@ravnborg.org>2019-05-26 10:55:04 +0200
commit95b608044fe0ea128133fdf6ee4c999d5165f7af (patch)
tree77a5b8b86f65c6d3f821ee15ca7d7ed64b6ea6b0 /drivers/gpu/drm/bridge/thc63lvd1024.c
parentdrm/bridge: make dw_mipi_dsi.h self-contained (diff)
downloadlinux-dev-95b608044fe0ea128133fdf6ee4c999d5165f7af.tar.xz
linux-dev-95b608044fe0ea128133fdf6ee4c999d5165f7af.zip
drm/bridge: drop drmP.h usage
Drop use of the deprecated drmP.h header file. While touching the list of include files: - Divide include files in blocks of linux/* drm/* etc. - Sort individual blocks of include files - Remove duplicated header file v2: - Be consistent in the order of the include blocks (Laurent) Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> Cc: Andrzej Hajda <a.hajda@samsung.com> Cc: David Airlie <airlied@linux.ie> Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Peter Senna Tschudin <peter.senna@gmail.com> Cc: Martin Donnelly <martin.donnelly@ge.com> Cc: Martyn Welch <martyn.welch@collabora.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190519183636.19588-1-sam@ravnborg.org
Diffstat (limited to 'drivers/gpu/drm/bridge/thc63lvd1024.c')
-rw-r--r--drivers/gpu/drm/bridge/thc63lvd1024.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/gpu/drm/bridge/thc63lvd1024.c b/drivers/gpu/drm/bridge/thc63lvd1024.c
index b083a740565c..fd597f58f4e6 100644
--- a/drivers/gpu/drm/bridge/thc63lvd1024.c
+++ b/drivers/gpu/drm/bridge/thc63lvd1024.c
@@ -5,15 +5,17 @@
* Copyright (C) 2018 Jacopo Mondi <jacopo+renesas@jmondi.org>
*/
-#include <drm/drmP.h>
-#include <drm/drm_bridge.h>
-#include <drm/drm_panel.h>
-
#include <linux/gpio/consumer.h>
+#include <linux/module.h>
+#include <linux/of.h>
#include <linux/of_graph.h>
+#include <linux/platform_device.h>
#include <linux/regulator/consumer.h>
#include <linux/slab.h>
+#include <drm/drm_bridge.h>
+#include <drm/drm_panel.h>
+
enum thc63_ports {
THC63_LVDS_IN0,
THC63_LVDS_IN1,