summaryrefslogtreecommitdiff
path: root/drivers/video/meson/meson_dw_hdmi.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-08-02 16:59:37 -0600
committerTom Rini <trini@konsulko.com>2020-08-18 17:36:52 -0400
commita186579d2697e2205ac52d9795ee39a6617e6426 (patch)
tree7575868487d0a463f81eec230b161441d1df1ccf /drivers/video/meson/meson_dw_hdmi.c
parent0b3b102f648aa82e5e44f38c300e8e94098b15dc (diff)
downloadu-boot-WIP/2020-08-17-reduce-common.tar.gz
common: Drop linux/types.h from common headerWIP/2020-08-17-reduce-common
Move this out of the common header and include it only where needed. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/meson/meson_dw_hdmi.c')
-rw-r--r--drivers/video/meson/meson_dw_hdmi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/meson/meson_dw_hdmi.c b/drivers/video/meson/meson_dw_hdmi.c
index 6a2b439afb..46db20bed3 100644
--- a/drivers/video/meson/meson_dw_hdmi.c
+++ b/drivers/video/meson/meson_dw_hdmi.c
@@ -5,10 +5,12 @@
*/
#include <common.h>
+#include <compiler.h>
#include <display.h>
#include <dm.h>
#include <edid.h>
#include <log.h>
+#include <stdbool.h>
#include <asm/io.h>
#include <dw_hdmi.h>
#include <dm/device-internal.h>
@@ -17,6 +19,7 @@
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/printk.h>
+#include <linux/types.h>
#include <power/regulator.h>
#include <clk.h>
#include <linux/delay.h>