(submit/bsd-defines v2) xfree86: os-support: move including machine/sysarch.h out of public header
The only consumer seems to be one BSD specific file, the few drivers using the *_iopl seem to include it on their own. Thus, no need to keep it in public headers. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
aa1ec33ec8
commit
529e80026f
|
@ -36,6 +36,10 @@
|
||||||
#include "xf86Priv.h"
|
#include "xf86Priv.h"
|
||||||
#include "xf86_OSlib.h"
|
#include "xf86_OSlib.h"
|
||||||
|
|
||||||
|
#if defined(USE_I386_IOPL) || defined(USE_AMD64_IOPL)
|
||||||
|
#include <machine/sysarch.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__NetBSD__) && !defined(MAP_FILE)
|
#if defined(__NetBSD__) && !defined(MAP_FILE)
|
||||||
#define MAP_FLAGS MAP_SHARED
|
#define MAP_FLAGS MAP_SHARED
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -213,10 +213,6 @@ struct pcvtid {
|
||||||
#include <sys/mouse.h>
|
#include <sys/mouse.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(USE_I386_IOPL) || defined(USE_AMD64_IOPL)
|
|
||||||
#include <machine/sysarch.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define CLEARDTR_SUPPORT
|
#define CLEARDTR_SUPPORT
|
||||||
|
|
||||||
#endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ || __DragonFly__ */
|
#endif /* __FreeBSD__ || __NetBSD__ || __OpenBSD__ || __DragonFly__ */
|
||||||
|
|
Loading…
Reference in New Issue