kernel: Print interrupt line when assuming no interrupt use on PCI device.

This commit is contained in:
Augustin Cavalier 2018-09-23 14:19:25 -04:00
parent 7d8b7501ba
commit c609f04f86

View File

@ -584,8 +584,8 @@ ensure_all_functions_matched(pci_module_info* pci, uint8 bus,
// (PCI Local Bus spec 3.0, section 6.2.4 / page 223, footnote.)
if (interrupt_line == 0 || interrupt_line == 255) {
dprintf("assuming no interrupt use on PCI device"
" %u:%u:%u (bios irq 0, no routing information)\n",
bus, device, function);
" %u:%u:%u (bios irq 0, interrupt line %" B_PRId32 ")\n",
bus, device, function, interrupt_line);
continue;
}