mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Report memory and I/O ranges even if they are not the first reported resources by PCI device
svn path=/trunk/; revision=15344
This commit is contained in:
parent
b5f744a25a
commit
4cb90117fa
1 changed files with 4 additions and 4 deletions
|
@ -433,7 +433,7 @@ PdoQueryResourceRequirements(
|
|||
if (Length == 0)
|
||||
{
|
||||
DPRINT("Unused address register\n");
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Set preferred descriptor */
|
||||
|
@ -522,7 +522,7 @@ PdoQueryResourceRequirements(
|
|||
if (Length == 0)
|
||||
{
|
||||
DPRINT("Unused address register\n");
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Set preferred descriptor */
|
||||
|
@ -722,7 +722,7 @@ PdoQueryResources(
|
|||
if (Length == 0)
|
||||
{
|
||||
DPRINT("Unused address register\n");
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (Flags & PCI_ADDRESS_IO_SPACE)
|
||||
|
@ -776,7 +776,7 @@ PdoQueryResources(
|
|||
if (Length == 0)
|
||||
{
|
||||
DPRINT("Unused address register\n");
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (Flags & PCI_ADDRESS_IO_SPACE)
|
||||
|
|
Loading…
Reference in a new issue