diff options
Diffstat (limited to 'drivers/pci/intel-iommu.c')
-rw-r--r-- | drivers/pci/intel-iommu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index 4d59a6a1f4dd..218a1f357b4d 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
@@ -1665,11 +1665,8 @@ int __init init_dmars(void) | |||
1665 | for_each_drhd_unit(drhd) { | 1665 | for_each_drhd_unit(drhd) { |
1666 | if (drhd->ignored) | 1666 | if (drhd->ignored) |
1667 | continue; | 1667 | continue; |
1668 | iommu = alloc_iommu(drhd); | 1668 | |
1669 | if (!iommu) { | 1669 | iommu = drhd->iommu; |
1670 | ret = -ENOMEM; | ||
1671 | goto error; | ||
1672 | } | ||
1673 | 1670 | ||
1674 | ret = iommu_init_domains(iommu); | 1671 | ret = iommu_init_domains(iommu); |
1675 | if (ret) | 1672 | if (ret) |
@@ -2324,6 +2321,9 @@ int __init intel_iommu_init(void) | |||
2324 | if (dmar_table_init()) | 2321 | if (dmar_table_init()) |
2325 | return -ENODEV; | 2322 | return -ENODEV; |
2326 | 2323 | ||
2324 | if (dmar_dev_scope_init()) | ||
2325 | return -ENODEV; | ||
2326 | |||
2327 | iommu_init_mempool(); | 2327 | iommu_init_mempool(); |
2328 | dmar_init_reserved_ranges(); | 2328 | dmar_init_reserved_ranges(); |
2329 | 2329 | ||