Skip to content
Snippets Groups Projects
Commit 5cb0f0dc authored by Bin Meng's avatar Bin Meng
Browse files

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: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarStefan Roese <sr@denx.de>
Tested-by: default avatarStefan Roese <sr@denx.de>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent b6524477
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
*/
#include <common.h>
#include <malloc.h>
#include <asm/sfi.h>
#include <asm/mpspec.h>
#include <asm/smbios.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment