diff --git a/hw/xfree86/doc/ddxDesign.xml b/hw/xfree86/doc/ddxDesign.xml
index a7f74e4d7..becb0c2c5 100644
--- a/hw/xfree86/doc/ddxDesign.xml
+++ b/hw/xfree86/doc/ddxDesign.xml
@@ -820,13 +820,11 @@ Here is what
-- - int xf86MatchIsaInstances(const char *driverName, - SymTabPtr chipsets, IsaChipsets *ISAchipsets, - DriverPtr drvp, FindIsaDevProc FindIsaDevice, - GDevPtr *devList, int numDevs, - int **foundEntities); - -- This function finds matches between ISA cards that a driver supports - and config file device sections. It is intended for use in the - - -ChipProbe() function of drivers for ISA cards. -devList andnumDevs are - typically those found from callingxf86MatchDevice() , - and represent the active config file device sections relevant to - the driver.ISAchipsets is a table that provides - a mapping between the driver's internal chipset tokens and the - resource classes.FindIsaDevice is a - driver-provided function that probes the hardware and returns the - chipset token corresponding to what was detected, and --1 if nothing was detected. -- If the config file device section contains a chipset entry, then - it is checked against the - -chipsets list. When - no chipset entry is present, theFindIsaDevice - function is called instead. -- Entity index numbers for confirmed matches are returned as an - array via - -foundEntities . The chipset token and - device section for each match are found in the -EntityInfoRec referenced by the indices. -- The function return value is the number of confirmed matches. A - return value of @@ -2581,18 +2532,6 @@ available at the driver level:-1 indicates an internal error. - The returnedfoundEntities array should be freed - by the driver withxfree() when it is no longer needed in cases where the return value is greater than zero.
-- - Bool xf86ParseIsaBusString(const char *busID); - -- Compares a - -BusID string with the ISA bus ID string - ("ISA" or "ISA:"). If they matchTRUE is returned, - andFALSE if they don't. -
-Bool xf86CheckPciSlot(int bus, int device, int func); @@ -2632,30 +2571,6 @@ available at the driver level:
- -- - int xf86ClaimIsaSlot(DriverPtr drvp, int chipset, - GDevPtr dev, Bool active); - -- This allocates an entity record entity and initialise the data - structures. The return value is the index of the newly allocated - entity record. - - -
-- - Bool xf86IsPrimaryIsa(void); - -- This function returns - -TRUE if the primary card is - an ISA (non-PCI) device, andFALSE otherwise. -