diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2011-08-23 20:05:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-09-21 04:21:55 -0400 |
commit | 80990c5ba6de9040d2df7c06e3c222c61004085d (patch) | |
tree | 38b4f852b7f20a2f6dee56c022cec550f23db16d /drivers/iommu | |
parent | 318fe7df9d8456f778451b01913b5d0dc0a25854 (diff) |
iommu: No need to set dmar_disabled in check_zero_address()
Before the restructruing of the x86 IOMMU code,
intel_iommu_init() was getting called directly from
pci_iommu_init() and hence needed to explicitly set
dmar_disabled to 1 for the failure conditions of
check_zero_address().
Recent changes don't call intel_iommu_init() if the intel iommu
detection fails as a result of failure in check_zero_address().
So no need for this ifdef and the code inside it.
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: yinghai@kernel.org
Cc: youquan.song@intel.com
Cc: joerg.roedel@amd.com
Cc: tony.luck@intel.com
Cc: dwmw2@infradead.org
Link: http://lkml.kernel.org/r/20110824001456.334878686@sbsiddha-desk.sc.intel.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/iommu')
-rw-r--r-- | drivers/iommu/dmar.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c index a10ccf2432c8..6f0422dcd0f5 100644 --- a/drivers/iommu/dmar.c +++ b/drivers/iommu/dmar.c | |||
@@ -540,9 +540,6 @@ int __init check_zero_address(void) | |||
540 | return 1; | 540 | return 1; |
541 | 541 | ||
542 | failed: | 542 | failed: |
543 | #ifdef CONFIG_DMAR | ||
544 | dmar_disabled = 1; | ||
545 | #endif | ||
546 | return 0; | 543 | return 0; |
547 | } | 544 | } |
548 | 545 | ||