aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2009-11-10 05:46:16 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-10 06:31:36 -0500
commit9d5ce73a64be2be8112147a3e0b551ad9cd1247b (patch)
tree8593dc2ca29e95b1a25e6f677459f3fe5c68dee9 /drivers
parentea1b0d3945c7374849235b6ecaea1191ee1d9d50 (diff)
x86: intel-iommu: Convert detect_intel_iommu to use iommu_init hook
This changes detect_intel_iommu() to set intel_iommu_init() to iommu_init hook if detect_intel_iommu() finds the IOMMU. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Cc: chrisw@sous-sol.org Cc: dwmw2@infradead.org Cc: joerg.roedel@amd.com Cc: muli@il.ibm.com LKML-Reference: <1257849980-22640-6-git-send-email-fujita.tomonori@lab.ntt.co.jp> [ -v2: build fix for the !CONFIG_DMAR case ] Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/dmar.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c
index 22b02c6df854..bce9cd7c755a 100644
--- a/drivers/pci/dmar.c
+++ b/drivers/pci/dmar.c
@@ -617,6 +617,10 @@ void __init detect_intel_iommu(void)
617 !dmar_disabled) 617 !dmar_disabled)
618 iommu_detected = 1; 618 iommu_detected = 1;
619#endif 619#endif
620#ifdef CONFIG_X86
621 if (ret)
622 x86_init.iommu.iommu_init = intel_iommu_init;
623#endif
620 } 624 }
621 early_acpi_os_unmap_memory(dmar_tbl, dmar_tbl_size); 625 early_acpi_os_unmap_memory(dmar_tbl, dmar_tbl_size);
622 dmar_tbl = NULL; 626 dmar_tbl = NULL;