mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[VIDEOPRT]
- Check all PCI buses not just the first 8 svn path=/trunk/; revision=54236
This commit is contained in:
parent
dfb06c0abf
commit
68be9235cf
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ IntVideoPortFindAdapter(
|
|||
{
|
||||
ULONG BusNumber, MaxBuses;
|
||||
|
||||
MaxBuses = DeviceExtension->AdapterInterfaceType == PCIBus ? 8 : 1;
|
||||
MaxBuses = DeviceExtension->AdapterInterfaceType == PCIBus ? PCI_MAX_BRIDGE_NUMBER : 1;
|
||||
|
||||
for (BusNumber = 0; BusNumber < MaxBuses; BusNumber++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue