Fixing probably long-standing bug in domain support.
This commit is contained in:
parent
6776c0f0e9
commit
1b94c117e0
|
@ -498,7 +498,7 @@ xf86GetPciDomain(PCITAG Tag)
|
||||||
pPCI = xf86GetPciHostConfigFromTag(Tag);
|
pPCI = xf86GetPciHostConfigFromTag(Tag);
|
||||||
|
|
||||||
if (pPCI && (result = PCI_DOM_FROM_BUS(pPCI->busnum)))
|
if (pPCI && (result = PCI_DOM_FROM_BUS(pPCI->busnum)))
|
||||||
return result;
|
return result + 1;
|
||||||
|
|
||||||
if (!pPCI || pPCI->fakeDevice)
|
if (!pPCI || pPCI->fakeDevice)
|
||||||
return 1; /* Domain 0 is reserved */
|
return 1; /* Domain 0 is reserved */
|
||||||
|
|
Loading…
Reference in New Issue