xfree86: xf86.h: unexport pciSlotClaimed field

Not used by any external 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-05-21 10:09:25 +02:00
parent 5720dd6c0d
commit 8abc8785f3
2 changed files with 1 additions and 2 deletions

View File

@ -68,8 +68,6 @@ static inline _X_DEPRECATED void xf86UnblockSIGIO(int wasset) { input_unlock();
/* PCI related */
#ifdef XSERVER_LIBPCIACCESS
#include <pciaccess.h>
extern _X_EXPORT int pciSlotClaimed;
extern _X_EXPORT Bool xf86CheckPciSlot(const struct pci_device *);
extern _X_EXPORT int xf86ClaimPciSlot(struct pci_device *, DriverPtr drvp,
int chipset, GDevPtr dev, Bool active);

View File

@ -70,5 +70,6 @@ BusType StringToBusType(const char *busID, const char **retID);
extern Bool fbSlotClaimed;
extern Bool sbusSlotClaimed;
extern int platformSlotClaimed;
extern int pciSlotClaimed;
#endif /* _XF86_BUS_H */