config: unexport config_init() and config_fini()

Those aren't used by any drivers, so no need to keep them public.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-11-10 11:19:37 +01:00
committed by Enrico Weigelt
parent 064e5f2ddf
commit 1749a8bdfd
4 changed files with 4 additions and 9 deletions

View File

@@ -31,7 +31,6 @@
#include <X11/Xfuncproto.h>
#include "hotplug.h"
#include "list.h"
/* Bump this each time you add something to the struct
@@ -84,4 +83,7 @@ xf86_find_platform_device_by_devnum(unsigned int major, unsigned int minor);
void config_pre_init(void);
void config_init(void);
void config_fini(void);
#endif /* _XSERVER_HOTPLUG_PRIV_H */

View File

@@ -55,7 +55,7 @@
#include "optionstr.h"
#if defined(CONFIG_UDEV) || defined(CONFIG_HAL)
#include "hotplug.h"
#include "config/hotplug_priv.h"
#endif
#ifdef KDRIVE_EVDEV

View File

@@ -52,8 +52,6 @@ typedef struct {
void xf86OSInitVidMem(VidMemInfoPtr);
#ifdef XSERVER_PLATFORM_BUS
#include "hotplug.h"
struct OdevAttributes;
void

View File

@@ -26,9 +26,4 @@
#ifndef HOTPLUG_H
#define HOTPLUG_H
#include <X11/Xfuncproto.h>
extern _X_EXPORT void config_init(void);
extern _X_EXPORT void config_fini(void);
#endif /* HOTPLUG_H */