diff mbox series

[RFC,15/15] drm: rcar-du: dsi: Include the DSI header

Message ID 20210623034656.10316-16-laurent.pinchart+renesas@ideasonboard.com (mailing list archive)
State New
Delegated to: Kieran Bingham
Headers show
Series R-Car V3U: DSI encoder driver | expand

Commit Message

Laurent Pinchart June 23, 2021, 3:46 a.m. UTC
From: Kieran Bingham <kieran.bingham@ideasonboard.com>

The rcar_mipi_dsi.h header declares the interface for the CRTC component
to use.

The lack of inclusion of the header causes a compiler warning.

Include the header correctly at the beginning of the component to ensure
consistency.

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
 drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
index 381b5bc9bce1..f708bcf5984c 100644
--- a/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
+++ b/drivers/gpu/drm/rcar-du/rcar_mipi_dsi.c
@@ -5,6 +5,8 @@ 
  * Copyright (C) 2020 Renesas Electronics Corporation
  */
 
+#include "rcar_mipi_dsi.h"
+
 #include <linux/clk.h>
 #include <linux/delay.h>
 #include <linux/io.h>