diff --git a/hw/xfree86/common/xf86sbusBus.h b/hw/xfree86/common/xf86sbusBus.h index acbc6c04d..9cfcbc574 100644 --- a/hw/xfree86/common/xf86sbusBus.h +++ b/hw/xfree86/common/xf86sbusBus.h @@ -104,4 +104,8 @@ extern _X_EXPORT char *sparcPromNode2Pathname(sbusPromNodePtr pnode); extern _X_EXPORT int sparcPromPathname2Node(const char *pathName); extern _X_EXPORT char *sparcDriverName(void); +extern Bool xf86SbusConfigure(void *busData, sbusDevicePtr sBus); +extern void xf86SbusConfigureNewDev(void *busData, sbusDevicePtr sBus, + GDevRec * GDev); + #endif /* _XF86_SBUSBUS_H */ diff --git a/hw/xfree86/common/xf86sbusBus_priv.h b/hw/xfree86/common/xf86sbusBus_priv.h deleted file mode 100644 index 797044718..000000000 --- a/hw/xfree86/common/xf86sbusBus_priv.h +++ /dev/null @@ -1,16 +0,0 @@ -/* SPDX-License-Identifier: MIT OR X11 - * - * Copyright © 2024 Enrico Weigelt, metux IT consult - * Copyright © 2000 Jakub Jelinek (jakub@redhat.com) - */ -#ifndef _XSERVER_XF86_SBUSBUS_H -#define _XSERVER_XF86_SBUSBUS_H - -#include - -#include "xf86sbusBus.h" - -Bool xf86SbusConfigure(void *busData, sbusDevicePtr sBus); -void xf86SbusConfigureNewDev(void *busData, sbusDevicePtr sBus, GDevRec* GDev); - -#endif /* _XSERVER_XF86_SBUSBUS_H */