diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2014-02-12 17:11:40 +0100 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2014-04-27 12:02:39 -0400 |
commit | b92a9289fef4831e9af69e5f6f64b5454f550559 (patch) | |
tree | fd0d8045275820d823042568ba3606682d0a162e | |
parent | 774fea38c48671ed44e54278f0280bae04822491 (diff) |
xfree86: int10: Fix build on ARM
Commit 7353ec7cb6fc235b03e59e35425201429c83ee72 "xfree86: Switch int10
code to stdint types" uses designated initializers to setup the fields
of the X86EMU_pioFuncs.
This breaks compilation on ARM, since out{b,w,l}() are redefined using
the preprocessor and therefore cause the compiler to complain about
non-existent fields being assigned to.
It seems like the compiler.h header that contains these redefinitions
isn't actually needed in xf86x86emu.c, so the easiest "fix" is to not
include it.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
-rw-r--r-- | hw/xfree86/int10/xf86x86emu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/xfree86/int10/xf86x86emu.c b/hw/xfree86/int10/xf86x86emu.c index b9a4d3603..4b0a13090 100644 --- a/hw/xfree86/int10/xf86x86emu.c +++ b/hw/xfree86/int10/xf86x86emu.c @@ -9,7 +9,6 @@ #include <x86emu.h> #include "xf86.h" -#include "compiler.h" #include "xf86_OSproc.h" #include "xf86Pci.h" #define _INT10_PRIVATE |