1
0
Fork 0

intr_remapping: fix typo

Signed-off-by: Ingo Molnar <mingo@elte.hu>
hifive-unleashed-5.1
Ingo Molnar 2008-10-16 17:05:27 +02:00
parent 10e0298686
commit cc8e920aaf
1 changed files with 1 additions and 1 deletions

View File

@ -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)