Unexport (and unimplement) xf86SetAccessFuncs.
Because, no.
This commit is contained in:
parent
44269e604e
commit
c1df4fbede
|
@ -133,8 +133,6 @@ void xf86DeallocateResourcesForEntity(int entityIndex, unsigned long type);
|
||||||
resPtr xf86RegisterResources(int entityIndex, resList list,
|
resPtr xf86RegisterResources(int entityIndex, resList list,
|
||||||
unsigned long Access);
|
unsigned long Access);
|
||||||
Bool xf86CheckPciMemBase(struct pci_device * pPci, memType base);
|
Bool xf86CheckPciMemBase(struct pci_device * pPci, memType base);
|
||||||
void xf86SetAccessFuncs(EntityInfoPtr pEnt, xf86SetAccessFuncPtr funcs,
|
|
||||||
xf86SetAccessFuncPtr oldFuncs);
|
|
||||||
Bool xf86IsEntityPrimary(int entityIndex);
|
Bool xf86IsEntityPrimary(int entityIndex);
|
||||||
resPtr xf86ReallocatePciResources(int entityIndex, resPtr pRes);
|
resPtr xf86ReallocatePciResources(int entityIndex, resPtr pRes);
|
||||||
resPtr xf86SetOperatingState(resList list, int entityIndex, int mask);
|
resPtr xf86SetOperatingState(resList list, int entityIndex, int mask);
|
||||||
|
|
|
@ -819,24 +819,6 @@ xf86SetCurrentAccess(Bool Enable, ScrnInfoPtr pScrn)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_X_EXPORT void
|
|
||||||
xf86SetAccessFuncs(EntityInfoPtr pEnt, xf86SetAccessFuncPtr funcs,
|
|
||||||
xf86SetAccessFuncPtr oldFuncs)
|
|
||||||
{
|
|
||||||
AccessFuncPtr rac;
|
|
||||||
|
|
||||||
if (!xf86Entities[pEnt->index]->rac)
|
|
||||||
xf86Entities[pEnt->index]->rac = xnfcalloc(1,sizeof(AccessFuncRec));
|
|
||||||
|
|
||||||
rac = xf86Entities[pEnt->index]->rac;
|
|
||||||
|
|
||||||
rac->mem_new = funcs->mem;
|
|
||||||
rac->io_new = funcs->io;
|
|
||||||
rac->io_mem_new = funcs->io_mem;
|
|
||||||
|
|
||||||
rac->old = oldFuncs;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Conflict checking
|
* Conflict checking
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -324,7 +324,6 @@ _X_HIDDEN void *xfree86LookupTab[] = {
|
||||||
SYMFUNC(xf86DeallocateResourcesForEntity)
|
SYMFUNC(xf86DeallocateResourcesForEntity)
|
||||||
SYMFUNC(xf86RegisterResources)
|
SYMFUNC(xf86RegisterResources)
|
||||||
SYMFUNC(xf86CheckPciMemBase)
|
SYMFUNC(xf86CheckPciMemBase)
|
||||||
SYMFUNC(xf86SetAccessFuncs)
|
|
||||||
SYMFUNC(xf86IsEntityPrimary)
|
SYMFUNC(xf86IsEntityPrimary)
|
||||||
SYMFUNC(xf86SetOperatingState)
|
SYMFUNC(xf86SetOperatingState)
|
||||||
SYMFUNC(xf86EnterServerState)
|
SYMFUNC(xf86EnterServerState)
|
||||||
|
|
Loading…
Reference in New Issue