Skip to content
Snippets Groups Projects
Commit 1f3f0357 authored by Simon Glass's avatar Simon Glass Committed by Alexander Graf
Browse files

x86: Correct a build warning in x86 tables


There is a build warning for three x86 boards since
write_smbios_table_wrapper() is not used. Fix it.

Fixes: e824cf3f (smbios: Allow compilation on 64bit systems)
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent 5be8b0a3
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,12 @@ ...@@ -12,10 +12,12 @@
#include <asm/acpi_table.h> #include <asm/acpi_table.h>
#include <asm/coreboot_tables.h> #include <asm/coreboot_tables.h>
#ifdef CONFIG_GENERATE_SMBIOS_TABLE
static u32 write_smbios_table_wrapper(u32 addr) static u32 write_smbios_table_wrapper(u32 addr)
{ {
return write_smbios_table(addr); return write_smbios_table(addr);
} }
#endif
/** /**
* Function prototype to write a specific configuration table * Function prototype to write a specific configuration table
......
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