From 711359b75cdb30f0f471aa3e7161a9722cbb43bf Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 20 Jun 2025 14:39:09 +0200 Subject: [PATCH] xfree86: export xf86FindScreenForEntity() but keep it internal Needed by the int10 module, so has to be in the symbol table. But still not supposed to be used by out-of-tree drivers. Reported-by: stefan11111 Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/xf86Bus.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/xfree86/common/xf86Bus.h b/hw/xfree86/common/xf86Bus.h index 4c0bc19ab..5072cb9ec 100644 --- a/hw/xfree86/common/xf86Bus.h +++ b/hw/xfree86/common/xf86Bus.h @@ -79,6 +79,7 @@ void xf86RemoveEntityFromScreen(ScrnInfoPtr pScrn, int entityIndex); _X_EXPORT /* only for internal int10 module - not supposed to be used by OOT drivers */ Bool xf86IsEntityPrimary(int entityIndex); +_X_EXPORT /* only for internal int10 module - not supposed to be used by OOT drivers */ ScrnInfoPtr xf86FindScreenForEntity(int entityIndex); Bool xf86BusConfig(void);