Report memory and I/O ranges even if they are not the first reported
resources by PCI device
Modified: trunk/reactos/drivers/bus/pci/pdo.c
_____
Modified: trunk/reactos/drivers/bus/pci/pdo.c
--- trunk/reactos/drivers/bus/pci/pdo.c 2005-05-16 15:18:03 UTC (rev
15343)
+++ trunk/reactos/drivers/bus/pci/pdo.c 2005-05-16 15:56:01 UTC (rev
15344)
@@ -433,7 +433,7 @@
if (Length == 0)
{
DPRINT("Unused address register\n");
- break;
+ continue;
}
/* Set preferred descriptor */
@@ -522,7 +522,7 @@
if (Length == 0)
{
DPRINT("Unused address register\n");
- break;
+ continue;
}
/* Set preferred descriptor */
@@ -722,7 +722,7 @@
if (Length == 0)
{
DPRINT("Unused address register\n");
- break;
+ continue;
}
if (Flags & PCI_ADDRESS_IO_SPACE)
@@ -776,7 +776,7 @@
if (Length == 0)
{
DPRINT("Unused address register\n");
- break;
+ continue;
}
if (Flags & PCI_ADDRESS_IO_SPACE)
Show replies by date