From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] dmar: fix build warnings when ACPI is not enabled Date: Tue, 27 Sep 2011 10:31:34 -0700 Message-ID: <4E820876.5090206@xenotime.net> References: <20110926172348.be01ff9a1c16267ffd000d2a@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from oproxy1-pub.bluehost.com ([66.147.249.253]:45237 "HELO oproxy1-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751567Ab1I0Rbg (ORCPT ); Tue, 27 Sep 2011 13:31:36 -0400 In-Reply-To: <20110926172348.be01ff9a1c16267ffd000d2a@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: linux-next@vger.kernel.org, LKML , Vinod Koul , Dan Williams , Andrew Morton From: Randy Dunlap Fix build warnings when CONFIG_ACPI is not enabled: include/linux/dmar.h:248:46: warning: 'struct acpi_dmar_header' declared inside parameter list include/linux/dmar.h:248:46: warning: its scope is only this definition or declaration, which is probably not what you want include/linux/dmar.h:252:46: warning: 'struct acpi_dmar_header' declared inside parameter list Signed-off-by: Randy Dunlap --- include/linux/dmar.h | 2 ++ 1 file changed, 2 insertions(+) --- next-2011-0927.orig/include/linux/dmar.h +++ next-2011-0927/include/linux/dmar.h @@ -244,6 +244,8 @@ extern int dmar_parse_dev_scope(void *st struct pci_dev ***devices, u16 segment); extern int intel_iommu_init(void); #else /* !CONFIG_INTEL_IOMMU: */ +struct acpi_dmar_header; + static inline int intel_iommu_init(void) { return -ENODEV; } static inline int dmar_parse_one_rmrr(struct acpi_dmar_header *header) {