diff --git a/hw/xfree86/common/xf86sbusBus.h b/hw/xfree86/common/xf86sbusBus.h index a445728e5..fd726443d 100644 --- a/hw/xfree86/common/xf86sbusBus.h +++ b/hw/xfree86/common/xf86sbusBus.h @@ -56,14 +56,6 @@ typedef struct sbus_device { const char *device; } sbusDevice, *sbusDevicePtr; -struct sbus_devtable { - int devId; - int fbType; - const char *promName; - const char *driverName; - const char *descr; -}; - extern _X_EXPORT int xf86MatchSbusInstances(const char *driverName, int sbusDevId, GDevPtr * devList, int numDevs, DriverPtr drvp, diff --git a/hw/xfree86/common/xf86sbusBus_priv.h b/hw/xfree86/common/xf86sbusBus_priv.h index 0c2aa6844..cb6381333 100644 --- a/hw/xfree86/common/xf86sbusBus_priv.h +++ b/hw/xfree86/common/xf86sbusBus_priv.h @@ -10,6 +10,14 @@ #include "xf86sbusBus.h" +struct sbus_devtable { + int devId; + int fbType; + const char *promName; + const char *driverName; + const char *descr; +}; + extern sbusDevicePtr *xf86SbusInfo; extern struct sbus_devtable sbusDeviceTable[];