Author: cgutman
Date: Sat Feb 11 01:11:47 2012
New Revision: 55535

URL: http://svn.reactos.org/svn/reactos?rev=55535&view=rev
Log:
[HAL]
- Print a message when a PCI device requires an interrupt but has none assigned

Modified:
    branches/usb-bringup-trunk/hal/halx86/legacy/bussupp.c

Modified: branches/usb-bringup-trunk/hal/halx86/legacy/bussupp.c
URL: 
http://svn.reactos.org/svn/reactos/branches/usb-bringup-trunk/hal/halx86/legacy/bussupp.c?rev=55535&r1=55534&r2=55535&view=diff
==============================================================================
--- branches/usb-bringup-trunk/hal/halx86/legacy/bussupp.c [iso-8859-1] 
(original)
+++ branches/usb-bringup-trunk/hal/halx86/legacy/bussupp.c [iso-8859-1] Sat Feb 
11 01:11:47 2012
@@ -802,6 +802,7 @@
     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 */


Reply via email to