Commit cc8e920a authored by Ingo Molnar's avatar Ingo Molnar

intr_remapping: fix typo

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 10e02986
...@@ -23,7 +23,7 @@ static struct irq_2_iommu irq_2_iommuX[NR_IRQS]; ...@@ -23,7 +23,7 @@ static struct irq_2_iommu irq_2_iommuX[NR_IRQS];
static struct irq_2_iommu *irq_2_iommu(unsigned int irq) static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
{ {
return (irq < nr_irqs) ?: irq_2_iommuX + irq : NULL; return (irq < nr_irqs) ? irq_2_iommuX + irq : NULL;
} }
static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq) static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment