xfree86: remove more RAC junky

Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
This commit is contained in:
Tiago Vignatti 2009-08-05 22:50:44 +03:00
parent 444723273a
commit 8c0085c715
3 changed files with 0 additions and 40 deletions

View File

@ -55,7 +55,6 @@
EntityPtr *xf86Entities = NULL; /* Bus slots claimed by drivers */
int xf86NumEntities = 0;
static int xf86EntityPrivateCount = 0;
BusAccPtr xf86BusAccInfo = NULL;
BusRec primaryBus = { BUS_NONE, { 0 } };

View File

@ -62,23 +62,6 @@ typedef struct {
IOADDRESS domainIO;
} EntityRec, *EntityPtr;
typedef struct x_BusAccRec {
struct x_BusAccRec *current; /* pointer to bridge open on this bus */
struct x_BusAccRec *primary; /* pointer to the bus connecting to this */
struct x_BusAccRec *next; /* this links the different buses together */
BusType type;
BusType busdep_type;
/* Bus-specific fields */
union {
struct {
int bus;
int primary_bus;
struct pci_device * dev;
pciBridgesSave save;
} pci;
} busdep;
} BusAccRec, *BusAccPtr;
/* state change notification callback */
typedef struct _stateChange {
xf86StateChangeNotificationCallbackFunc func;

View File

@ -33,28 +33,6 @@
#ifndef _XF86_PCI_BUS_H
#define _XF86_PCI_BUS_H
typedef struct {
CARD32 command;
CARD32 base[6];
CARD32 biosBase;
} pciSave, *pciSavePtr;
typedef struct {
struct pci_device * dev;
CARD32 ctrl;
} pciArg;
typedef struct {
pciArg arg;
pciSave save;
pciSave restore;
Bool ctrl;
} pciAccRec, *pciAccPtr;
typedef union {
CARD16 control;
} pciBridgesSave, *pciBridgesSavePtr;
void xf86PciProbe(void);
#endif /* _XF86_PCI_BUS_H */