summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2020-08-26 13:17:06 +0200
committerThomas Gleixner <tglx@linutronix.de>2020-09-16 16:52:38 +0200
commitbc95fd0d7c4273034b9486aaf369777eaaa00cb7 (patch)
tree7a66dc0b61b58ed1bd5b2d9eb31ead8d8d30ecda
parent9f0ffb4bb3008e56fcd7ad5ff24467a8b7f1f2e7 (diff)
iommu/amd: Remove domain search for PCI/MSI
Now that the domain can be retrieved through device::msi_domain the domain search for PCI_MSI[X] is not longer required. Remove it. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20200826112334.400700807@linutronix.de
-rw-r--r--drivers/iommu/amd/iommu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/iommu/amd/iommu.c b/drivers/iommu/amd/iommu.c
index a9d8b32a8476..ef64e01f66d7 100644
--- a/drivers/iommu/amd/iommu.c
+++ b/drivers/iommu/amd/iommu.c
@@ -3562,9 +3562,6 @@ static struct irq_domain *get_irq_domain_for_devid(struct irq_alloc_info *info,
case X86_IRQ_ALLOC_TYPE_IOAPIC_GET_PARENT:
case X86_IRQ_ALLOC_TYPE_HPET_GET_PARENT:
return iommu->ir_domain;
- case X86_IRQ_ALLOC_TYPE_PCI_MSI:
- case X86_IRQ_ALLOC_TYPE_PCI_MSIX:
- return iommu->msi_domain;
default:
WARN_ON_ONCE(1);
return NULL;