diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/alp_driver.c | 2 | ||||
-rw-r--r-- | src/cir.h | 2 | ||||
-rw-r--r-- | src/lg_driver.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/alp_driver.c b/src/alp_driver.c index 36f2039..bd5e52f 100644 --- a/src/alp_driver.c +++ b/src/alp_driver.c @@ -519,9 +519,11 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) pCir->Chipset = pCir->pEnt->chipset; /* Find the PCI info for this screen */ pCir->PciInfo = xf86GetPciInfoForEntity(pCir->pEnt->index); +#ifndef XSERVER_LIBPCIACCESS pCir->PciTag = pciTag(PCI_DEV_BUS(pCir->PciInfo), PCI_DEV_DEV(pCir->PciInfo), PCI_DEV_FUNC(pCir->PciInfo)); +#endif #if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 12 if (!xf86IsPc98()) @@ -23,7 +23,9 @@ typedef struct { ScrnInfoPtr pScrn; CARD32 properties; pciVideoPtr PciInfo; +#ifndef XSERVER_LIBPCIACCESS PCITAG PciTag; +#endif unsigned long PIOReg; union { struct lgRec *lg; diff --git a/src/lg_driver.c b/src/lg_driver.c index c20bbd0..589d14e 100644 --- a/src/lg_driver.c +++ b/src/lg_driver.c @@ -382,9 +382,11 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) /* Find the PCI info for this screen */ pCir->PciInfo = xf86GetPciInfoForEntity(pCir->pEnt->index); +#ifndef XSERVER_LIBPCIACCESS pCir->PciTag = pciTag(PCI_DEV_BUS(pCir->PciInfo), PCI_DEV_DEV(pCir->PciInfo), PCI_DEV_FUNC(pCir->PciInfo)); +#endif if (xf86LoadSubModule(pScrn, "int10")) { xf86Int10InfoPtr int10InfoPtr; |