From mboxrd@z Thu Jan 1 00:00:00 1970 From: Huang Ying Subject: [BUGFIX] ACPI, APEI, Fix building of APEI EINJ and GHES Date: Mon, 10 May 2010 17:24:42 +0800 Message-ID: <1273483482.3344.65.camel@yhuang-dev.sh.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from mga14.intel.com ([143.182.124.37]:62721 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752582Ab0EJJYo (ORCPT ); Mon, 10 May 2010 05:24:44 -0400 Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Len Brown , Randy Dunlap Cc: Stephen Rothwell , LKML , "linux-acpi@vger.kernel.org" Randy reported building warnings and errors for APEI EINJ and GHES as follow: drivers/acpi/apei/einj.c:127:error: implicit declaration of function 'ndelay' ghes.c:(.text+0x119e71): undefined reference to `apei_mce_report_mem_error' CONFIG_X86_MCE is not enabled This patch fixes these two bugs. Reported-by: Randy Dunlap Signed-off-by: Huang Ying --- drivers/acpi/apei/einj.c | 1 + drivers/acpi/apei/ghes.c | 2 ++ 2 files changed, 3 insertions(+) --- a/drivers/acpi/apei/einj.c +++ b/drivers/acpi/apei/einj.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c @@ -242,6 +242,7 @@ static void ghes_do_proc(struct ghes *gh ser = ghes_severity(ghes->estatus->error_severity); apei_estatus_for_each_section(ghes->estatus, gdata) { +#ifdef CONFIG_X86_MCE if (!uuid_le_cmp(*(uuid_le *)gdata->section_type, CPER_SEC_PLATFORM_MEM)) { apei_mce_report_mem_error( @@ -249,6 +250,7 @@ static void ghes_do_proc(struct ghes *gh (struct cper_sec_mem_err *)(gdata+1)); processed = 1; } +#endif } if (!processed && printk_ratelimit())