From f61b43a5c145df73afd41bc19a0a16901453db41 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 11 Feb 2012 01:11:47 +0000 Subject: [PATCH] [HAL] - Print a message when a PCI device requires an interrupt but has none assigned svn path=/branches/usb-bringup-trunk/; revision=55535 --- hal/halx86/legacy/bussupp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hal/halx86/legacy/bussupp.c b/hal/halx86/legacy/bussupp.c index b6f0b83c384..69dc4dba4e3 100644 --- a/hal/halx86/legacy/bussupp.c +++ b/hal/halx86/legacy/bussupp.c @@ -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 */