xfree86: sbus: unexport struct sbus_devtable

Not used by any drivers, so no need to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-04-30 13:09:33 +02:00
parent e33cee7e9c
commit bbf7cbb4cc
2 changed files with 8 additions and 8 deletions

View File

@ -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,

View File

@ -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[];