From 8ab84103fde06d3bc6561fcb5405df88678cb09a Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 21 May 2025 10:46:03 +0200 Subject: [PATCH] xfree86: xf86.h: unexport xf86EnableInputDeviceForVTSwitch() Not used by any external drivers. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/xf86.h | 1 - hw/xfree86/common/xf86_priv.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86.h b/hw/xfree86/common/xf86.h index 2fc27c311..64f535d65 100644 --- a/hw/xfree86/common/xf86.h +++ b/hw/xfree86/common/xf86.h @@ -153,7 +153,6 @@ extern _X_EXPORT void SetTimeSinceLastInputEvent(void); extern _X_EXPORT void *xf86AddGeneralHandler(int fd, InputHandlerProc proc, void *data); extern _X_EXPORT int xf86RemoveGeneralHandler(void *handler); -extern _X_EXPORT void xf86EnableInputDeviceForVTSwitch(InputInfoPtr pInfo); /* xf86Helper.c */ diff --git a/hw/xfree86/common/xf86_priv.h b/hw/xfree86/common/xf86_priv.h index 21117bea9..22a312f7a 100644 --- a/hw/xfree86/common/xf86_priv.h +++ b/hw/xfree86/common/xf86_priv.h @@ -22,5 +22,6 @@ InputHandlerProc xf86SetConsoleHandler(InputHandlerProc handler, void *data); void xf86ProcessActionEvent(ActionEvent action, void *arg); Bool xf86VTOwner(void); void xf86VTEnter(void); +void xf86EnableInputDeviceForVTSwitch(InputInfoPtr pInfo); #endif /* _XSERVER_XF86_PRIV_H */