xfree86: xf86.h: unexport platformSlotClaimed 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-20 20:33:56 +02:00
parent fd9a447dc8
commit 5720dd6c0d
2 changed files with 1 additions and 4 deletions

View File

@ -59,10 +59,6 @@ extern _X_EXPORT DevPrivateKeyRec xf86ScreenKeyRec;
extern _X_EXPORT ScrnInfoPtr *xf86Screens; /* List of pointers to ScrnInfoRecs */ extern _X_EXPORT ScrnInfoPtr *xf86Screens; /* List of pointers to ScrnInfoRecs */
extern _X_EXPORT const unsigned char byte_reversed[256]; extern _X_EXPORT const unsigned char byte_reversed[256];
#if defined(XSERVER_PLATFORM_BUS)
extern _X_EXPORT int platformSlotClaimed;
#endif
#define XF86SCRNINFO(p) xf86ScreenToScrn(p) #define XF86SCRNINFO(p) xf86ScreenToScrn(p)
/* Compatibility functions for pre-input-thread drivers */ /* Compatibility functions for pre-input-thread drivers */

View File

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