diff --git a/hw/xfree86/doc/ddxDesign.xml b/hw/xfree86/doc/ddxDesign.xml
index becb0c2c5..367844136 100644
--- a/hw/xfree86/doc/ddxDesign.xml
+++ b/hw/xfree86/doc/ddxDesign.xml
@@ -1107,16 +1107,6 @@ Here is what
-
-
-- - resPtr xf86ReallocatePciResources(int entityIndex, resPtr pRes); - -- This function takes a list of PCI resources that need to be - reallocated and returns - -NULL when all relocations are - successful. -xf86RegisterResources() should be called again to - register the relocated resources with the broker. - If the reallocation fails, a list of the resources that could not be - relocated is returned. -
@@ -2795,93 +2725,6 @@ Two functions are provided to obtain a resource range of a given type:
-- - void xf86SetAccessFuncs(EntityInfoPtr pEnt, - xf86SetAccessFuncPtr funcs, - xf86SetAccessFuncPtr oldFuncs); - - with: -- typedef struct { - xf86AccessPtr mem; - xf86AccessPtr io; - xf86AccessPtr io_mem; - } xf86SetAccessFuncRec, *xf86SetAccessFuncPtr; - -- The driver can pass three functions: one for I/O access, one for - memory access and one for combined memory and I/O access. If the - memory access and combined access functions are identical the - common level assumes that the memory access cannot be controlled - independently of I/O access, if the I/O access function and the - combined access functions are the same it is assumed that I/O can - not be controlled independently. If memory and I/O have to be - controlled together all three values should be the same. If a - non - -NULL value is passed as third argument it is - interpreted as an address where to store the old access record. - If the third argument isNULL it will be assumed - that the generic access should be enabled before replacing the - access functions. Otherwise it will be disabled. The driver may - enable them itself using the returned values. It should do this - from its replacement access functions as the generic access may - be disabled by the common level on certain occasions. If replacement - functions are specified they must control all resources of the - specific type registered for the entity. -
-- - memType xf86ChkConflict(resRange *rgp, int entityIndex); - -- This function checks if the resource range - -rgp of - for the specified entity conflicts with with another resource. - If a conflict is found, the address of the start of the conflict - is returned. The return value is zero when there is no conflict. -
-- - resPtr xf86SetOperatingState(resList list, int entityIndex, - int mask); - -- This function is used to set the status of a resource during - OPERATING state. - -list holds a list to which -mask is to be applied. The parameter -mask may have the valueResUnusedOpr - andResDisableOpr . The first one should be used - if a resource isn't used by the driver during OPERATING state - although it is decoded by the device, while the latter one indicates - that the resource is not decoded during OPERATING state. Note - that the resource ranges have to match those specified during - registration. If a range has been specified starting at -A and ending atB and suppose -C us a value satisfying -A < C < B one may not - specify the resource range(A,B) by splitting it - into two ranges(A,C) and(C,B) . -
@@ -2896,17 +2739,6 @@ The following two functions are provided for special cases:
- - void xf86DeallocateResourcesForEntity(int entityIndex, long type); - -- This function deallocates all resources of a given type registered - for a certain entity from the resource broker list. - - -