From 6daab88fc2b96c8be5b5277137a67f3b970711e0 Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Fri, 22 Jun 2018 00:32:18 +0100 Subject: [PATCH] allwinner: common: add missing header Some code in sunxi_common.c requires symbols defined in sunxi_private.h, so add the header to that file. It was included via another header before, but let's make this explicit. Reported-by: Samuel Holland Signed-off-by: Andre Przywara --- plat/allwinner/common/sunxi_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plat/allwinner/common/sunxi_common.c b/plat/allwinner/common/sunxi_common.c index e36c8b07..92ecde4b 100644 --- a/plat/allwinner/common/sunxi_common.c +++ b/plat/allwinner/common/sunxi_common.c @@ -9,6 +9,8 @@ #include #include +#include "sunxi_private.h" + static mmap_region_t sunxi_mmap[PLATFORM_MMAP_REGIONS + 1] = { MAP_REGION_FLAT(SUNXI_ROM_BASE, SUNXI_ROM_SIZE, MT_MEMORY | MT_RO | MT_SECURE), -- 2.30.2