mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
intr_remapping: fix typo
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
10e0298686
commit
cc8e920aaf
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue