From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [BUGFIX] ACPI, APEI, Fix building of APEI EINJ and GHES Date: Mon, 10 May 2010 10:00:52 -0700 Message-ID: <4BE83BC4.90504@oracle.com> References: <1273483482.3344.65.camel@yhuang-dev.sh.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from rcsinet10.oracle.com ([148.87.113.121]:17247 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755733Ab0EJRCN (ORCPT ); Mon, 10 May 2010 13:02:13 -0400 In-Reply-To: <1273483482.3344.65.camel@yhuang-dev.sh.intel.com> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Huang Ying Cc: Len Brown , Stephen Rothwell , LKML , "linux-acpi@vger.kernel.org" On 05/10/10 02:24, Huang Ying wrote: > 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 Yes, fixed. Thanks. > --- > 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()) > > -- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code ***