Skip to content

Commit

Permalink
intr_remapping: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Oct 16, 2008
1 parent 10e0298 commit cc8e920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/intr_remapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
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)
Expand Down

0 comments on commit cc8e920

Please sign in to comment.