We use memalign() and other symbols defined elsewhere without explicitly including them, which could cause build failures. Add the necessary header files. Signed-off-by: Suzuki K Poulose <suzuki.poulose@xxxxxxx> --- lib/arm/asm/pgtable.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/arm/asm/pgtable.h b/lib/arm/asm/pgtable.h index d7c73906..aa98d9ad 100644 --- a/lib/arm/asm/pgtable.h +++ b/lib/arm/asm/pgtable.h @@ -13,7 +13,9 @@ * * This work is licensed under the terms of the GNU GPL, version 2. */ +#include <alloc.h> #include <alloc_page.h> +#include <asm/setup.h> /* * We can convert va <=> pa page table addresses with simple casts -- 2.34.1