x86: pci: Do not assign irq 0 to pci device
IRQ 0 is reserved and should not be assigned to pci device. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
31a2dc6955
commit
6fc0e8a1fa
@ -172,6 +172,8 @@ void pci_assign_irqs(int bus, int device, u8 irq[4])
|
||||
continue;
|
||||
|
||||
line = irq[pin - 1];
|
||||
if (!line)
|
||||
continue;
|
||||
|
||||
debug("Assigning IRQ %d to PCI device %d.%x.%d (INT%c)\n",
|
||||
line, bus, device, func, 'A' + pin - 1);
|
||||
|
Loading…
Reference in New Issue
Block a user