From b9dea62b6b753bf848ef4d42b71e168f3cd525cd Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 27 Oct 2019 09:54:03 -0600 Subject: video: meson: Drop unnecessary header includes These files should not be included in meson header files. Drop them and tidy up the affected C files. Signed-off-by: Simon Glass Reviewed-by: Anatolij Gustschin Acked-by: Neil Armstrong Signed-off-by: Neil Armstrong --- include/video.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/video.h b/include/video.h index 485071d0723..e7c58e86cb4 100644 --- a/include/video.h +++ b/include/video.h @@ -17,6 +17,8 @@ #include +struct udevice; + struct video_uc_platdata { uint align; uint size; -- cgit v1.2.3 From 920c0d4523a846bd33ec6ca0cb27462cc01e33b5 Mon Sep 17 00:00:00 2001 From: Anand Moon Date: Thu, 26 Dec 2019 11:33:52 +0000 Subject: configs: meson64: enable GIC support for G12A/G12B Enable GIC support for G12A/G12B platform. Signed-off-by: Anand Moon Reviewed-by: Neil Armstrong Signed-off-by: Neil Armstrong --- include/configs/meson64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/configs/meson64.h b/include/configs/meson64.h index 736081277d4..50707a31978 100644 --- a/include/configs/meson64.h +++ b/include/configs/meson64.h @@ -8,7 +8,7 @@ #define __MESON64_CONFIG_H /* Generic Interrupt Controller Definitions */ -#if defined(CONFIG_MESON_AXG) +#if (defined(CONFIG_MESON_AXG) || defined(CONFIG_MESON_G12A)) #define GICD_BASE 0xffc01000 #define GICC_BASE 0xffc02000 #else /* MESON GXL and GXBB */ -- cgit v1.2.3