mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[PCI] Accept a bus number range instead of a single bus number
This commit is contained in:
parent
6aae5f4fdd
commit
65cc802b73
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ FdoStartDevice(
|
|||
switch (ResourceDescriptor->Type)
|
||||
{
|
||||
case CmResourceTypeBusNumber:
|
||||
if (FoundBusNumber || ResourceDescriptor->u.BusNumber.Length != 1)
|
||||
if (FoundBusNumber || ResourceDescriptor->u.BusNumber.Length < 1)
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
|
||||
/* Use this one instead */
|
||||
|
|
Loading…
Reference in a new issue