From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 7 Nov 2016 08:47:03 -0700 Subject: [U-Boot] [PATCH v4 01/14] x86: Correct a build warning in x86 tables In-Reply-To: <1478533636-17577-1-git-send-email-sjg@chromium.org> References: <1478533636-17577-1-git-send-email-sjg@chromium.org> Message-ID: <1478533636-17577-2-git-send-email-sjg@chromium.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: None arch/x86/lib/tables.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/lib/tables.c b/arch/x86/lib/tables.c index 025b183..5966e58 100644 --- a/arch/x86/lib/tables.c +++ b/arch/x86/lib/tables.c @@ -12,10 +12,12 @@ #include #include +#ifdef CONFIG_GENERATE_SMBIOS_TABLE static u32 write_smbios_table_wrapper(u32 addr) { return write_smbios_table(addr); } +#endif /** * Function prototype to write a specific configuration table -- 2.8.0.rc3.226.g39d4020