From: Bin Meng Date: Sat, 7 May 2016 14:46:11 +0000 (-0700) Subject: x86: Fix build warning in tables.c when CONFIG_SEABIOS X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=5cb0f0dc88f816a08003a06cef8bd5310425e573;p=u-boot.git x86: Fix build warning in tables.c when CONFIG_SEABIOS The following build warning is seen in tables.c: warning: implicit declaration of function 'memalign' Add the missing header file to fix it. Signed-off-by: Bin Meng Reviewed-by: Stefan Roese Tested-by: Stefan Roese Reviewed-by: Simon Glass --- diff --git a/arch/x86/lib/tables.c b/arch/x86/lib/tables.c index a156f2ce31..1213a9cd2b 100644 --- a/arch/x86/lib/tables.c +++ b/arch/x86/lib/tables.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include