From: Ingo Molnar Date: Tue, 10 Nov 2009 13:37:58 +0000 (+0100) Subject: x86: Add iommu_init to x86_init_ops, fix build X-Git-Tag: v2.6.33-rc1~409^2~50 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=b4941a9a606f0131559cc040b64e8437ac7b32c5;p=~shefty%2Frdma-dev.git x86: Add iommu_init to x86_init_ops, fix build Most of the time x86_init.h is included in pci-dma.c - but not always, leading to this rare build failure: arch/x86/kernel/pci-dma.c:296: error: 'x86_init' undeclared (first use in this function) So include asm/x86_init.h explicitly. Cc: FUJITA Tomonori Cc: chrisw@sous-sol.org Cc: dwmw2@infradead.org Cc: joerg.roedel@amd.com Cc: muli@il.ibm.com LKML-Reference: <1257849980-22640-2-git-send-email-fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c index 63eebee80e7..f79870e8926 100644 --- a/arch/x86/kernel/pci-dma.c +++ b/arch/x86/kernel/pci-dma.c @@ -11,6 +11,7 @@ #include #include #include +#include static int forbid_dac __read_mostly;