xfree86: xf86Option: unexport xf86MarkOptionUsedByName()
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:
parent
3ee128c0e1
commit
bf27c3441f
|
@ -106,8 +106,6 @@ extern _X_EXPORT XF86OptionPtr xf86FindOption(XF86OptionPtr options,
|
|||
const char *name);
|
||||
extern _X_EXPORT const char *xf86FindOptionValue(XF86OptionPtr options,
|
||||
const char *name);
|
||||
extern _X_EXPORT void xf86MarkOptionUsedByName(XF86OptionPtr options,
|
||||
const char *name);
|
||||
extern _X_EXPORT void xf86ShowUnusedOptions(int scrnIndex,
|
||||
XF86OptionPtr options);
|
||||
extern _X_EXPORT void xf86ProcessOptions(int scrnIndex, XF86OptionPtr options,
|
||||
|
|
|
@ -9,5 +9,6 @@
|
|||
|
||||
void xf86OptionListReport(XF86OptionPtr parm);
|
||||
void xf86MarkOptionUsed(XF86OptionPtr option);
|
||||
void xf86MarkOptionUsedByName(XF86OptionPtr options, const char *name);
|
||||
|
||||
#endif /* _XORG_XF86OPTION_PRIV_H */
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#include "xf86DDC_priv.h"
|
||||
#include "xf86Crtc.h"
|
||||
#include "xf86Modes.h"
|
||||
#include "xf86Opt_priv.h"
|
||||
#include "xf86Priv.h"
|
||||
#include "xf86RandR12.h"
|
||||
#include "X11/extensions/render.h"
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
#include "os/xserver_poll.h"
|
||||
|
||||
#include "xf86.h"
|
||||
#include "xf86Opt_priv.h"
|
||||
#include "xf86Priv.h"
|
||||
#include "xf86_OSlib.h"
|
||||
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
#include "xf86Opt_priv.h"
|
||||
#include "vgaHW.h"
|
||||
|
||||
#include "compiler.h"
|
||||
|
|
Loading…
Reference in New Issue