- Print a message when a PCI device requires an interrupt but has none assigned

svn path=/branches/usb-bringup-trunk/; revision=55535
This commit is contained in:
Cameron Gutman 2012-02-11 01:11:47 +00:00
parent 3a5a6bf017
commit f61b43a5c1

View file

@ -802,6 +802,7 @@ HalpDebugPciDumpBus(IN ULONG i,
if (PciData->u.type0.InterruptPin != 0 &&
PciData->u.type0.InterruptLine != 0 &&
PciData->u.type0.InterruptLine != 0xFF) DbgPrint(", IRQ %02d", PciData->u.type0.InterruptLine);
else if (PciData->u.type0.InterruptPin != 0) DbgPrint(", IRQ assignment required");
DbgPrint("\n");
/* Scan addresses */