diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-03-18 10:02:18 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-05-31 08:20:42 +0300 |
commit | d9e32ecda41bb6b6301fd2a0945003bb8f4e2ba1 (patch) | |
tree | 179bf526bd3cc6510ab4c2569736bfad71cbdc3d /drivers/gpu/drm/omapdrm/dss/hdmi5.c | |
parent | 2639d6b9be19e029869158a6b8cbc5d253cd7bbc (diff) | |
download | linux-d9e32ecda41bb6b6301fd2a0945003bb8f4e2ba1.tar.xz |
drm/omap: Fix missing includes
With certain kernel config options many omapdrm files fail to compile
due to missing include of linux/gpio/consumer.h and linux/of.h.
This patch adds those includes.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reported-by: Dan Murphy <dmurphy@ti.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers/gpu/drm/omapdrm/dss/hdmi5.c')
-rw-r--r-- | drivers/gpu/drm/omapdrm/dss/hdmi5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi5.c b/drivers/gpu/drm/omapdrm/dss/hdmi5.c index a43f7b10e113..417dff5eb7cb 100644 --- a/drivers/gpu/drm/omapdrm/dss/hdmi5.c +++ b/drivers/gpu/drm/omapdrm/dss/hdmi5.c @@ -38,6 +38,7 @@ #include <linux/gpio.h> #include <linux/regulator/consumer.h> #include <linux/component.h> +#include <linux/of.h> #include <video/omapdss.h> #include <sound/omap-hdmi-audio.h> |