From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Sat, 7 May 2016 07:46:11 -0700 Subject: [U-Boot] [PATCH v2 02/28] x86: Fix build warning in tables.c when CONFIG_SEABIOS In-Reply-To: <1462632397-11224-1-git-send-email-bmeng.cn@gmail.com> References: <1462632397-11224-1-git-send-email-bmeng.cn@gmail.com> Message-ID: <1462632397-11224-3-git-send-email-bmeng.cn@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- Changes in v2: None arch/x86/lib/tables.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/lib/tables.c b/arch/x86/lib/tables.c index a156f2c..1213a9c 100644 --- a/arch/x86/lib/tables.c +++ b/arch/x86/lib/tables.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include -- 1.8.2.1